mirror of
https://github.com/timothymiller/cloudflare-ddns.git
synced 2026-05-06 09:53:40 -03:00
Bumps [rand](https://github.com/rust-random/rand) from 0.9.3 to 0.10.1. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.9.3...0.10.1) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
743 B
TOML
29 lines
743 B
TOML
[package]
|
|
name = "cloudflare-ddns"
|
|
version = "2.1.0"
|
|
edition = "2021"
|
|
description = "Access your home network remotely via a custom domain name without a static IP"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.13", features = ["json", "form", "rustls-no-provider"], default-features = false }
|
|
rustls = { version = "0.23", features = ["ring"], default-features = false }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["rt", "macros", "time", "signal", "net"] }
|
|
regex-lite = "0.1"
|
|
url = "2"
|
|
if-addrs = "0.15"
|
|
rand = "0.10"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|
|
panic = "abort"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.27.0"
|
|
wiremock = "0.6"
|