From 0180b618e42fab36ecc301479d1cf0fc8ffb3770 Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Thu, 28 Nov 2024 11:36:11 +0900 Subject: [PATCH] chore: deps --- rpxy-acme/Cargo.toml | 4 ++-- rpxy-bin/Cargo.toml | 2 +- rpxy-certs/Cargo.toml | 4 ++-- rpxy-lib/Cargo.toml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/rpxy-acme/Cargo.toml b/rpxy-acme/Cargo.toml index 1be23d3..3143168 100644 --- a/rpxy-acme/Cargo.toml +++ b/rpxy-acme/Cargo.toml @@ -17,14 +17,14 @@ post-quantum = ["rustls-post-quantum"] url = { version = "2.5.4" } rustc-hash = "2.0.0" thiserror = "2.0.3" -tracing = "0.1.40" +tracing = "0.1.41" async-trait = "0.1.83" base64 = "0.22.1" aws-lc-rs = { version = "1.11.1", default-features = false, features = [ "aws-lc-sys", ] } blocking = "1.6.1" -rustls = { version = "0.23.18", default-features = false, features = [ +rustls = { version = "0.23.19", default-features = false, features = [ "std", "aws_lc_rs", ] } diff --git a/rpxy-bin/Cargo.toml b/rpxy-bin/Cargo.toml index e7f9cc1..b5dec39 100644 --- a/rpxy-bin/Cargo.toml +++ b/rpxy-bin/Cargo.toml @@ -53,7 +53,7 @@ hot_reload = "0.1.8" serde_ignored = "0.1.10" # logging -tracing = { version = "0.1.40" } +tracing = { version = "0.1.41" } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } ################################ diff --git a/rpxy-certs/Cargo.toml b/rpxy-certs/Cargo.toml index 86d00c5..dc6ddfe 100644 --- a/rpxy-certs/Cargo.toml +++ b/rpxy-certs/Cargo.toml @@ -17,12 +17,12 @@ http3 = [] [dependencies] rustc-hash = { version = "2.0.0" } -tracing = { version = "0.1.40" } +tracing = { version = "0.1.41" } derive_builder = { version = "0.20.2" } thiserror = { version = "2.0.3" } hot_reload = { version = "0.1.8" } async-trait = { version = "0.1.83" } -rustls = { version = "0.23.18", default-features = false, features = [ +rustls = { version = "0.23.19", default-features = false, features = [ "std", "aws_lc_rs", ] } diff --git a/rpxy-lib/Cargo.toml b/rpxy-lib/Cargo.toml index 7ec9ad7..f8467c7 100644 --- a/rpxy-lib/Cargo.toml +++ b/rpxy-lib/Cargo.toml @@ -80,7 +80,7 @@ hyper-rustls = { version = "0.27.3", default-features = false, features = [ # tls and cert management for server rpxy-certs = { path = "../rpxy-certs/", default-features = false } hot_reload = "0.1.8" -rustls = { version = "0.23.18", default-features = false } +rustls = { version = "0.23.19", default-features = false } rustls-post-quantum = { version = "0.1.0", optional = true } tokio-rustls = { version = "0.26.0", features = ["early-data"] } @@ -88,7 +88,7 @@ tokio-rustls = { version = "0.26.0", features = ["early-data"] } rpxy-acme = { path = "../rpxy-acme/", default-features = false, optional = true } # logging -tracing = { version = "0.1.40" } +tracing = { version = "0.1.41" } # http/3 quinn = { version = "0.11.6", optional = true }