2021-12-12 00:36:40 -06:00
|
|
|
[package]
|
|
|
|
name = "gandi-rust-dns-updater"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
2021-12-14 21:30:36 -06:00
|
|
|
reqwest = { version = "0.11.7", features = ["json"] }
|
2021-12-12 00:36:40 -06:00
|
|
|
toml = "0.5.8"
|
2021-12-24 19:20:31 -06:00
|
|
|
json = "0.12.4"
|
2021-12-12 00:36:40 -06:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-12-12 02:49:21 -06:00
|
|
|
directories = "4.0.1"
|
|
|
|
structopt = "0.3.25"
|
2021-12-14 21:30:36 -06:00
|
|
|
tokio = { version = "1.14.0", features = ["full"] }
|
2022-01-23 02:22:41 -06:00
|
|
|
futures = "0.3.17"
|
2022-01-23 15:12:27 -06:00
|
|
|
anyhow = "1.0"
|
|
|
|
die-exit = { git = "https://github.com/SeriousBug/die.git" }
|