From ef408797f76fbcb0a5138e1a52efc1dec1ce94f1 Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Mon, 13 Nov 2023 12:17:04 +0900 Subject: [PATCH] chore: deps --- dap-bin/Cargo.toml | 8 ++++---- dap-lib/Cargo.toml | 4 ++-- legacy/Cargo.toml | 10 +++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/dap-bin/Cargo.toml b/dap-bin/Cargo.toml index 2c67d4b..9fdbff5 100644 --- a/dap-bin/Cargo.toml +++ b/dap-bin/Cargo.toml @@ -36,9 +36,9 @@ doh-auth-proxy-lib = { path = "../dap-lib/" } anyhow = "1.0.75" mimalloc = { version = "*", default-features = false } -serde = { version = "1.0.190", default-features = false, features = ["derive"] } +serde = { version = "1.0.192", default-features = false, features = ["derive"] } derive_builder = "0.12.0" -tokio = { version = "1.33.0", default-features = false, features = [ +tokio = { version = "1.34.0", default-features = false, features = [ "net", "rt-multi-thread", "time", @@ -48,8 +48,8 @@ tokio = { version = "1.33.0", default-features = false, features = [ async-trait = "0.1.74" # config -clap = { version = "4.4.7", features = ["std", "cargo", "wrap_help"] } -toml = { version = "0.8.6", default-features = false, features = ["parse"] } +clap = { version = "4.4.8", features = ["std", "cargo", "wrap_help"] } +toml = { version = "0.8.8", default-features = false, features = ["parse"] } hot_reload = "0.1.4" # logging diff --git a/dap-lib/Cargo.toml b/dap-lib/Cargo.toml index 2a122d5..4399a96 100644 --- a/dap-lib/Cargo.toml +++ b/dap-lib/Cargo.toml @@ -33,7 +33,7 @@ publish = false [dependencies] rand = "0.8.5" -tokio = { version = "1.33.0", features = [ +tokio = { version = "1.34.0", features = [ "net", "rt-multi-thread", "time", @@ -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.190", features = ["derive"] } +serde = { version = "1.0.192", features = ["derive"] } itertools = "0.11.0" rustc-hash = "1.1.0" diff --git a/legacy/Cargo.toml b/legacy/Cargo.toml index 5a8ed36..a39d3da 100644 --- a/legacy/Cargo.toml +++ b/legacy/Cargo.toml @@ -31,12 +31,12 @@ publish = false [dependencies] data-encoding = "2.4.0" -clap = { version = "4.4.7", default-features = false, features = [ +clap = { version = "4.4.8", default-features = false, features = [ "std", "cargo", "wrap_help", ] } -tokio = { version = "1.33.0", features = [ +tokio = { version = "1.34.0", features = [ "net", "rt-multi-thread", "time", @@ -57,15 +57,15 @@ trust-dns-resolver = { version = "0.23.2", default-features = false, features = anyhow = "1.0.75" dotenv = "0.15.0" serde_json = "1.0.108" -jwt-simple = "0.11.7" +jwt-simple = "0.11.9" p256 = { version = "0.13.2", features = ["jwk", "pem"] } chrono = "0.4.31" 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.6", default-features = false, features = ["parse"] } -serde = "1.0.190" +toml = { version = "0.8.8", default-features = false, features = ["parse"] } +serde = "1.0.192" hashlink = "0.8.4" cedarwood = "0.4.6" regex = "1.10.2"