diff --git a/dap-bin/Cargo.toml b/dap-bin/Cargo.toml index 7c070ca..2c67d4b 100644 --- a/dap-bin/Cargo.toml +++ b/dap-bin/Cargo.toml @@ -36,7 +36,7 @@ doh-auth-proxy-lib = { path = "../dap-lib/" } anyhow = "1.0.75" mimalloc = { version = "*", default-features = false } -serde = { version = "1.0.189", default-features = false, features = ["derive"] } +serde = { version = "1.0.190", default-features = false, features = ["derive"] } derive_builder = "0.12.0" tokio = { version = "1.33.0", default-features = false, features = [ "net", @@ -49,7 +49,7 @@ async-trait = "0.1.74" # config clap = { version = "4.4.7", features = ["std", "cargo", "wrap_help"] } -toml = { version = "0.8.4", default-features = false, features = ["parse"] } +toml = { version = "0.8.6", default-features = false, features = ["parse"] } hot_reload = "0.1.4" # logging diff --git a/dap-lib/Cargo.toml b/dap-lib/Cargo.toml index b74b8bb..2a122d5 100644 --- a/dap-lib/Cargo.toml +++ b/dap-lib/Cargo.toml @@ -40,7 +40,7 @@ tokio = { version = "1.33.0", features = [ "sync", "macros", ] } -futures = { version = "0.3.28", default-features = false, features = [ +futures = { version = "0.3.29", default-features = false, features = [ "std", "async-await", ] } @@ -48,7 +48,7 @@ anyhow = "1.0.75" tracing = "0.1.40" thiserror = "1.0.50" async-trait = "0.1.74" -serde = { version = "1.0.189", features = ["derive"] } +serde = { version = "1.0.190", features = ["derive"] } itertools = "0.11.0" rustc-hash = "1.1.0" diff --git a/legacy/Cargo.toml b/legacy/Cargo.toml index eabcf58..5a8ed36 100644 --- a/legacy/Cargo.toml +++ b/legacy/Cargo.toml @@ -43,7 +43,7 @@ tokio = { version = "1.33.0", features = [ "sync", "macros", ] } -futures = { version = "0.3.28", default-features = false } +futures = { version = "0.3.29", default-features = false } reqwest = { version = "0.11.22", default-features = false, features = [ "default", "trust-dns", @@ -56,7 +56,7 @@ trust-dns-resolver = { version = "0.23.2", default-features = false, features = ] } anyhow = "1.0.75" dotenv = "0.15.0" -serde_json = "1.0.107" +serde_json = "1.0.108" jwt-simple = "0.11.7" p256 = { version = "0.13.2", features = ["jwk", "pem"] } chrono = "0.4.31" @@ -64,8 +64,8 @@ odoh-rs = { git = "https://github.com/junkurihara/odoh-rs.git" } rand = "0.8.5" bytes = "1.5.0" urlencoding = "2.1.3" -toml = { version = "0.8.4", default-features = false, features = ["parse"] } -serde = "1.0.189" +toml = { version = "0.8.6", default-features = false, features = ["parse"] } +serde = "1.0.190" hashlink = "0.8.4" cedarwood = "0.4.6" regex = "1.10.2"