From 154df593c6cfd953b9cdff4b1185b023fcd1877f Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Thu, 1 Aug 2024 14:47:21 +0900 Subject: [PATCH] chore: deps --- proxy-bin/Cargo.toml | 12 ++++++------ proxy-lib/Cargo.toml | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/proxy-bin/Cargo.toml b/proxy-bin/Cargo.toml index dd7fdca..f7e2c43 100644 --- a/proxy-bin/Cargo.toml +++ b/proxy-bin/Cargo.toml @@ -21,21 +21,21 @@ doh-auth-proxy-lib = { path = "../proxy-lib/", default-features = false, feature anyhow = "1.0.86" mimalloc = { version = "*", default-features = false } -serde = { version = "1.0.203", default-features = false, features = ["derive"] } +serde = { version = "1.0.204", default-features = false, features = ["derive"] } derive_builder = "0.20.0" -tokio = { version = "1.38.0", default-features = false, features = [ +tokio = { version = "1.39.2", default-features = false, features = [ "net", "rt-multi-thread", "time", "sync", "macros", ] } -async-trait = "0.1.80" +async-trait = "0.1.81" # config -clap = { version = "4.5.8", features = ["std", "cargo", "wrap_help"] } -toml = { version = "0.8.14", default-features = false, features = ["parse"] } -hot_reload = "0.1.5" +clap = { version = "4.5.13", features = ["std", "cargo", "wrap_help"] } +toml = { version = "0.8.19", default-features = false, features = ["parse"] } +hot_reload = "0.1.6" # logging tracing = { version = "0.1.40" } diff --git a/proxy-lib/Cargo.toml b/proxy-lib/Cargo.toml index fc6c370..1d5476b 100644 --- a/proxy-lib/Cargo.toml +++ b/proxy-lib/Cargo.toml @@ -17,7 +17,7 @@ publish.workspace = true [dependencies] rand = "0.8.5" -tokio = { version = "1.38.0", features = [ +tokio = { version = "1.39.2", features = [ "net", "rt-multi-thread", "time", @@ -30,16 +30,16 @@ futures = { version = "0.3.30", default-features = false, features = [ ] } anyhow = "1.0.86" tracing = "0.1.40" -thiserror = "1.0.61" -async-trait = "0.1.80" -serde = { version = "1.0.203", features = ["derive"] } +thiserror = "1.0.63" +async-trait = "0.1.81" +serde = { version = "1.0.204", features = ["derive"] } itertools = "0.13.0" rustc-hash = "2.0.0" crossbeam-channel = "0.5.13" # doh and odoh client with cache and query manipulation plugins odoh-rs = { git = "https://github.com/junkurihara/odoh-rs.git", branch = "master" } -bytes = "1.6.0" +bytes = "1.7.0" hickory-proto = { version = "0.24.1", default-features = false } data-encoding = "2.6.0" hashlink = "0.9.1"