gandi-dns-updater/Cargo.toml

24 lines
540 B
TOML
Raw Normal View History

2021-06-04 15:49:34 +02:00
[package]
name = "gandi-dns-updater"
version = "0.1.0"
authors = ["Vegard Berg <vgberg@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.40"
dirs = "3.0.2"
nix = "0.20.0"
serde = {version = "1.0.126", features = ["derive"]}
serde_json = "1.0.64"
toml = "0.5.8"
trust-dns-resolver = "0.20.3"
ureq = {version = "2.1.1", features = ["json"]}
xdg = "2.2.0"
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
panic = 'abort'