gandi-live-dns-rust/Cargo.toml

37 lines
849 B
TOML
Raw Normal View History

2021-12-12 00:36:40 -06:00
[package]
name = "gandi-live-dns"
2022-07-20 22:19:16 -05:00
version = "1.3.0"
2021-12-12 00:36:40 -06:00
edition = "2021"
2022-04-03 23:34:56 -05:00
authors = ["Kaan Barmore-Genç <kaan@bgenc.net>"]
2021-12-12 00:36:40 -06:00
[profile.release]
2022-01-30 16:45:45 -06:00
strip = "symbols"
lto = true
2021-12-12 00:36:40 -06:00
[dependencies]
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"] }
directories = "4.0"
clap = { version = "3.2", features = [
"derive",
"cargo",
"unicode",
"wrap_help",
] }
2022-07-20 22:14:33 -05:00
tokio = { version = "1.20", features = ["full"] }
futures = "0.3"
2022-01-23 15:12:27 -06:00
anyhow = "1.0"
governor = "0.4"
async-trait = "0.1"
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" }
[dev-dependencies]
httpmock = "0.6"
regex = "1.6"