From 3657a96955c113386cd2a7e60ef98f48153d6ce8 Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Tue, 23 Jul 2024 13:55:35 +0900 Subject: [PATCH] deps: s2n-quic --- rpxy-acme/Cargo.toml | 4 ++-- rpxy-bin/Cargo.toml | 2 +- rpxy-certs/Cargo.toml | 4 ++-- rpxy-lib/Cargo.toml | 8 ++++---- submodules/s2n-quic-h3/Cargo.toml | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/rpxy-acme/Cargo.toml b/rpxy-acme/Cargo.toml index 7adc8fdd..331bbe2b 100644 --- a/rpxy-acme/Cargo.toml +++ b/rpxy-acme/Cargo.toml @@ -13,11 +13,11 @@ publish.workspace = true [dependencies] url = { version = "2.5.2" } rustc-hash = "2.0.0" -thiserror = "1.0.62" +thiserror = "1.0.63" tracing = "0.1.40" async-trait = "0.1.81" base64 = "0.22.1" -aws-lc-rs = { version = "1.8.0", default-features = false, features = [ +aws-lc-rs = { version = "1.8.1", default-features = false, features = [ "aws-lc-sys", ] } blocking = "1.6.1" diff --git a/rpxy-bin/Cargo.toml b/rpxy-bin/Cargo.toml index f330d9d5..14db7b71 100644 --- a/rpxy-bin/Cargo.toml +++ b/rpxy-bin/Cargo.toml @@ -44,7 +44,7 @@ futures-util = { version = "0.3.30", default-features = false } # config clap = { version = "4.5.9", features = ["std", "cargo", "wrap_help"] } -toml = { version = "0.8.14", default-features = false, features = ["parse"] } +toml = { version = "0.8.15", default-features = false, features = ["parse"] } hot_reload = "0.1.6" # logging diff --git a/rpxy-certs/Cargo.toml b/rpxy-certs/Cargo.toml index 238c909d..9f64b7c8 100644 --- a/rpxy-certs/Cargo.toml +++ b/rpxy-certs/Cargo.toml @@ -18,7 +18,7 @@ http3 = [] rustc-hash = { version = "2.0.0" } tracing = { version = "0.1.40" } derive_builder = { version = "0.20.0" } -thiserror = { version = "1.0.62" } +thiserror = { version = "1.0.63" } hot_reload = { version = "0.1.6" } async-trait = { version = "0.1.81" } rustls = { version = "0.23.11", default-features = false, features = [ @@ -26,7 +26,7 @@ rustls = { version = "0.23.11", default-features = false, features = [ "aws_lc_rs", ] } rustls-pemfile = { version = "2.1.2" } -rustls-webpki = { version = "0.102.5", default-features = false, features = [ +rustls-webpki = { version = "0.102.6", default-features = false, features = [ "std", "aws_lc_rs", ] } diff --git a/rpxy-lib/Cargo.toml b/rpxy-lib/Cargo.toml index a23e192b..f996ab7c 100644 --- a/rpxy-lib/Cargo.toml +++ b/rpxy-lib/Cargo.toml @@ -50,7 +50,7 @@ async-trait = "0.1.81" # Error handling anyhow = "1.0.86" -thiserror = "1.0.62" +thiserror = "1.0.63" # http for both server and client http = "1.1.0" @@ -93,11 +93,11 @@ h3-quinn = { version = "0.0.7", optional = true } s2n-quic-h3 = { path = "../submodules/s2n-quic-h3/", features = [ "tracing", ], optional = true } -s2n-quic = { version = "1.42.0", default-features = false, features = [ +s2n-quic = { version = "1.43.0", default-features = false, features = [ "provider-tls-rustls", ], optional = true } -s2n-quic-core = { version = "0.42.0", default-features = false, optional = true } -s2n-quic-rustls = { version = "0.42.0", optional = true } +s2n-quic-core = { version = "0.43.0", default-features = false, optional = true } +s2n-quic-rustls = { version = "0.43.0", optional = true } ########## # for UDP socket wit SO_REUSEADDR when h3 with quinn socket2 = { version = "0.5.7", features = ["all"], optional = true } diff --git a/submodules/s2n-quic-h3/Cargo.toml b/submodules/s2n-quic-h3/Cargo.toml index 4a0c725d..b4459244 100644 --- a/submodules/s2n-quic-h3/Cargo.toml +++ b/submodules/s2n-quic-h3/Cargo.toml @@ -15,8 +15,8 @@ futures = { version = "0.3", default-features = false } h3 = { version = "0.0.6", features = ["tracing"] } # s2n-quic = { path = "../s2n-quic" } # s2n-quic-core = { path = "../s2n-quic-core" } -s2n-quic = { version = "1.42.0" } -s2n-quic-core = { version = "0.42.0" } +s2n-quic = { version = "1.43.0" } +s2n-quic-core = { version = "0.43.0" } tracing = { version = "0.1.40", optional = true } [features]