Merge branch 'master' of gburri.org:gandi_dns_update
[gandi_dns_update.git] / Cargo.toml
1 [package]
2 name = "gandi_dns_update"
3 version = "0.1.0"
4 authors = ["Greg Burri <greg.burri@gmail.com>"]
5 edition = "2021"
6
7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9 [dependencies]
10 reqwest = { version = "0.11", features = ["blocking", "json"] }
11 itertools = "0.10"
12 serde = { version = "1.0", features = ["derive"] }
13 serde_json = "1.0"
14 ron = "0.8" # Rust object notation, to load configuration files.
15
16 [profile.release]
17 codegen-units = 1
18 lto = true
19 panic = 'abort'