2021-12-12 00:36:40 -06:00
|
|
|
[package]
|
2022-01-27 00:22:05 -06:00
|
|
|
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"
|
2022-11-13 15:16:48 -06:00
|
|
|
repository = "https://github.com/SeriousBug/gandi-live-dns-rust"
|
2021-12-12 00:36:40 -06:00
|
|
|
|
2022-01-27 00:22:05 -06:00
|
|
|
[profile.release]
|
2022-01-30 16:45:45 -06:00
|
|
|
strip = "symbols"
|
2022-01-27 00:22:05 -06:00
|
|
|
lto = true
|
|
|
|
|
2021-12-12 00:36:40 -06:00
|
|
|
[dependencies]
|
2022-08-23 00:17:17 -05:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = [
|
|
|
|
"json",
|
|
|
|
"rustls-tls",
|
|
|
|
] }
|
2023-01-30 23:07:02 -06:00
|
|
|
toml = "0.7"
|
2022-04-03 20:27:45 -05:00
|
|
|
json = "0.12"
|
2021-12-12 00:36:40 -06:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-04-03 20:27:45 -05:00
|
|
|
directories = "4.0"
|
2022-11-13 14:46:20 -06:00
|
|
|
clap = { version = "4.0", features = [
|
2022-08-23 00:17:17 -05:00
|
|
|
"derive",
|
|
|
|
"cargo",
|
|
|
|
"unicode",
|
|
|
|
"wrap_help",
|
|
|
|
] }
|
2022-12-18 00:41:14 -06:00
|
|
|
tokio = { version = "1.23", features = ["full"] }
|
2022-04-03 20:27:45 -05:00
|
|
|
futures = "0.3"
|
2022-01-23 15:12:27 -06:00
|
|
|
anyhow = "1.0"
|
2022-11-13 14:46:20 -06:00
|
|
|
governor = "0.5"
|
2022-08-22 21:20:10 -05:00
|
|
|
async-trait = "0.1"
|
2023-01-30 23:16:02 -06:00
|
|
|
die-exit = "0.4"
|
2023-02-10 21:08:54 -06:00
|
|
|
thiserror = "1.0.38"
|
2022-08-22 21:20:10 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
httpmock = "0.6"
|
2022-08-23 00:17:17 -05:00
|
|
|
regex = "1.6"
|
2023-02-12 23:58:23 -06:00
|
|
|
lazy_static = "1.4.0"
|
2022-11-13 15:16:48 -06:00
|
|
|
|
2023-01-30 23:16:02 -06:00
|
|
|
[dev-dependencies.die-exit]
|
2022-11-13 15:16:48 -06:00
|
|
|
version = "0.4"
|
|
|
|
features = ["test"]
|