gandi-live-dns-rust/Cargo.toml

23 lines
639 B
TOML
Raw Normal View History

2021-12-12 00:36:40 -06:00
[package]
name = "gandi-live-dns"
version = "1.0.0"
2021-12-12 00:36:40 -06:00
edition = "2021"
[profile.release]
strip = true
lto = true
2021-12-12 00:36:40 -06:00
[dependencies]
2022-01-25 22:57:24 -06:00
reqwest = { version = "0.11.7", default-features= false, features = ["json", "rustls-tls"] }
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"
2022-01-23 21:40:11 -06:00
# TODO: Relies on a yet-unreleased interface. Switch to an actual crate release once available
die-exit = { git = "https://github.com/Xavientois/die.git", rev = "31d3801f4e21654b0b28430987b1e21fc7728676" }