Update lib and use rust edition 2021

This commit is contained in:
Rémi BERTHO 2022-03-02 00:09:19 +01:00
parent 7ac7b97341
commit 3ff8442c1a
Signed by: dalan
GPG Key ID: EE3B917931C07B64
4 changed files with 1800 additions and 9 deletions

4
.gitignore vendored
View File

@ -4,10 +4,6 @@
debug/
target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

1793
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
[package]
name = "check_ip"
version = "2.1.0"
edition = "2018"
edition = "2021"
[dependencies]
anyhow = "1.0"
@ -11,9 +11,9 @@ native-tls = "0.2"
toml = "0.5"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
simplelog = "^0.10.0"
simplelog = "0.11"
clokwerk = "0.3"
trust-dns-resolver = {version = "0.20", features = ["serde-config"] }
trust-dns-resolver = {version = "0.21", features = ["serde-config"] }
query_external_ip = "0.1"
tokio = "1"
systemstat = "0.1"
systemstat = "0.1"

View File

@ -1,4 +1,6 @@
# TODO
* [ ] Ajout de la version dans les logs
* [ ] Examples de fichiers de config (config + systemd)
* [ ] Rustfmt
* [ ] Fonction check asychrone
* [ ] Fonction check asychrone
* [ ] Utilisation de l[API Gandi](https://api.gandi.net/docs/livedns) via [restson](https://crates.io/crates/restson)