From ae46f50821a2b146597ba946b67cea5b79b5f671 Mon Sep 17 00:00:00 2001 From: lost Date: Mon, 23 Mar 2026 01:46:41 -0600 Subject: [PATCH] bookkeeping: version up; spelling; rm ununused dep feat --- Cargo.lock | 8 +------- Cargo.toml | 4 ++-- src/main.rs | 2 +- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bfbc23b..b7da57d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -881,7 +881,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" dependencies = [ "futures-core", - "futures-sink", ] [[package]] @@ -915,10 +914,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" dependencies = [ "futures-core", - "futures-io", - "futures-sink", "futures-task", - "memchr", "pin-project-lite", "slab", ] @@ -1820,7 +1816,7 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" [[package]] name = "r53-ddns" -version = "0.1.1" +version = "0.2.0" dependencies = [ "aws-config", "aws-sdk-route53", @@ -1915,9 +1911,7 @@ dependencies = [ "base64", "bytes", "encoding_rs", - "futures-channel", "futures-core", - "futures-util", "h2 0.4.13", "http 1.4.0", "http-body 1.0.1", diff --git a/Cargo.toml b/Cargo.toml index d6a6432..57d79ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "r53-ddns" -version = "0.1.1" +version = "0.2.0" edition = "2024" [dependencies] @@ -10,6 +10,6 @@ clap = { version = "4", features = ["derive"] } env_logger = "0.11" hickory-resolver = "0.25" log = "0.4" -reqwest = { version = "0.13", features = ["blocking", "json", "rustls"] } +reqwest = { version = "0.13", features = ["json", "rustls"] } thiserror = "1.0" tokio = { version = "1", features = ["full"] } diff --git a/src/main.rs b/src/main.rs index dd98088..153308b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -61,7 +61,7 @@ async fn main() -> Result<(), Box> { { true => { if await_dns_sync { - info! {"dns updates propogated successfully"} + info! {"dns updates propagated successfully"} await_dns_sync = false } }