2021-12-12 00:36:40 -06:00
|
|
|
[package]
|
2022-01-27 00:22:05 -06:00
|
|
|
name = "gandi-live-dns"
|
2022-03-10 20:25:51 -06:00
|
|
|
version = "1.1.0"
|
2021-12-12 00:36:40 -06:00
|
|
|
edition = "2021"
|
|
|
|
|
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-04-03 20:27:45 -05:00
|
|
|
reqwest = { version = "0.11", default-features= false, features = ["json", "rustls-tls"] }
|
|
|
|
toml = "0.5"
|
|
|
|
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"
|
|
|
|
clap = { version = "3.1", features = ["derive", "cargo", "unicode", "wrap_help"]}
|
|
|
|
tokio = { version = "1.17", features = ["full"] }
|
|
|
|
futures = "0.3"
|
2022-01-23 15:12:27 -06:00
|
|
|
anyhow = "1.0"
|
2022-04-03 20:27:45 -05:00
|
|
|
governor = "0.4"
|
2022-01-23 21:40:11 -06:00
|
|
|
# TODO: Relies on a yet-unreleased interface. Switch to an actual crate release once available
|
2022-01-27 00:22:05 -06:00
|
|
|
die-exit = { git = "https://github.com/Xavientois/die.git", rev = "31d3801f4e21654b0b28430987b1e21fc7728676" }
|