gandi-live-dns-rust/Cargo.toml

46 lines
1001 B
TOML
Raw Normal View History

2021-12-12 00:36:40 -06:00
[package]
name = "gandi-live-dns"
2022-11-13 14:53:56 -06:00
description = "Automatically updates your IP address in Gandi's Live DNS. Makes it possible to use Gandi as a dynamic DNS system."
2023-02-13 00:04:05 -06:00
version = "1.8.0"
2021-12-12 00:36:40 -06:00
edition = "2021"
2022-04-03 23:34:56 -05:00
authors = ["Kaan Barmore-Genç <kaan@bgenc.net>"]
2022-11-13 14:53:56 -06:00
license = "MIT"
2023-02-01 22:58:47 -06:00
readme = "README.md"
repository = "https://github.com/SeriousBug/gandi-live-dns-rust"
2021-12-12 00:36:40 -06:00
[profile.release]
2022-01-30 16:45:45 -06:00
strip = "symbols"
lto = true
2021-12-12 00:36:40 -06:00
[dependencies]
reqwest = { version = "0.11", default-features = false, features = [
"json",
"rustls-tls",
] }
2023-01-30 23:07:02 -06:00
toml = "0.7"
json = "0.12"
2021-12-12 00:36:40 -06:00
serde = { version = "1.0", features = ["derive"] }
directories = "4.0"
clap = { version = "4.0", features = [
"derive",
"cargo",
"unicode",
"wrap_help",
] }
2022-12-18 00:41:14 -06:00
tokio = { version = "1.23", features = ["full"] }
futures = "0.3"
2022-01-23 15:12:27 -06:00
anyhow = "1.0"
governor = "0.5"
async-trait = "0.1"
die-exit = "0.4"
thiserror = "1.0.38"
[dev-dependencies]
httpmock = "0.6"
regex = "1.6"
lazy_static = "1.4.0"
[dev-dependencies.die-exit]
version = "0.4"
features = ["test"]