mirror of
https://github.com/SeriousBug/gandi-live-dns-rust
synced 2024-11-14 19:37:27 -06:00
37 lines
849 B
TOML
37 lines
849 B
TOML
[package]
|
|
name = "gandi-live-dns"
|
|
version = "1.4.0"
|
|
edition = "2021"
|
|
authors = ["Kaan Barmore-Genç <kaan@bgenc.net>"]
|
|
|
|
[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 = "4.0", features = [
|
|
"derive",
|
|
"cargo",
|
|
"unicode",
|
|
"wrap_help",
|
|
] }
|
|
tokio = { version = "1.20", features = ["full"] }
|
|
futures = "0.3"
|
|
anyhow = "1.0"
|
|
governor = "0.5"
|
|
async-trait = "0.1"
|
|
# 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" }
|
|
|
|
[dev-dependencies]
|
|
httpmock = "0.6"
|
|
regex = "1.6"
|