From 054beb390c5ef97adf5ca80beb7669d4b4f9e91c Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 5 Mar 2022 16:04:01 +0100 Subject: [PATCH] Update deps --- Cargo.toml | 2 +- src/config.rs | 2 +- src/libdoh/Cargo.toml | 14 +++++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5fe9b32..21f8857 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ tls = ["libdoh/tls"] [dependencies] libdoh = { path = "src/libdoh", version = "0.9.0", default-features = false } -clap = { version = "3.0.0", features = ["std", "cargo", "wrap_help"] } +clap = { version = "3.1.5", features = ["std", "cargo", "wrap_help"] } dnsstamps = "0.1.9" jemallocator = "0.3.2" diff --git a/src/config.rs b/src/config.rs index 4722516..7e1861a 100644 --- a/src/config.rs +++ b/src/config.rs @@ -20,7 +20,7 @@ pub fn parse_opts(globals: &mut Globals) { let err_ttl = ERR_TTL.to_string(); let _ = include_str!("../Cargo.toml"); - let options = app_from_crate!() + let options = command!() .arg( Arg::new("hostname") .short('H') diff --git a/src/libdoh/Cargo.toml b/src/libdoh/Cargo.toml index 42a9f02..3c1aece 100644 --- a/src/libdoh/Cargo.toml +++ b/src/libdoh/Cargo.toml @@ -15,18 +15,18 @@ default = ["tls"] tls = ["tokio-rustls"] [dependencies] -anyhow = "1.0.44" -arc-swap = "1.4.0" +anyhow = "1.0.55" +arc-swap = "1.5.0" base64 = "0.13.0" byteorder = "1.4.3" bytes = "1.1.0" -futures = "0.3.17" +futures = "0.3.21" hpke = "0.5.1" -hyper = { version = "0.14.14", default-features = false, features = ["server", "http1", "http2", "stream"] } +hyper = { version = "0.14.17", default-features = false, features = ["server", "http1", "http2", "stream"] } odoh-rs = "1.0.0-alpha.1" -rand = "0.8.4" -tokio = { version = "1.13.0", features = ["net", "rt-multi-thread", "parking_lot", "time", "sync"] } -tokio-rustls = { version = "0.23.0", features = ["early-data"], optional = true } +rand = "0.8.5" +tokio = { version = "1.17.0", features = ["net", "rt-multi-thread", "parking_lot", "time", "sync"] } +tokio-rustls = { version = "0.23.2", features = ["early-data"], optional = true } rustls-pemfile = "0.3.0" [profile.release]