mirror of
https://github.com/SeriousBug/gandi-live-dns-rust
synced 2024-11-13 19:17:26 -06:00
27 lines
773 B
TOML
27 lines
773 B
TOML
[package]
|
|
name = "gandi-live-dns"
|
|
version = "1.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
strip = "symbols"
|
|
lto = true
|
|
|
|
[dependencies]
|
|
|
|
reqwest = { version = "0.11", default-features= false, features = ["json", "rustls-tls"] }
|
|
toml = "0.5"
|
|
json = "0.12"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
directories = "4.0"
|
|
clap = { version = "3.1", features = ["derive", "cargo", "unicode", "wrap_help"]}
|
|
tokio = { version = "1.17", features = ["full"] }
|
|
futures = "0.3"
|
|
anyhow = "1.0"
|
|
governor = "0.4"
|
|
# 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" }
|
|
thiserror = "1.0.30"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|