From b96bba68db31dd91ad3e06b054e33d8f99f754fe Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Fri, 10 Jan 2025 19:26:27 +0900 Subject: [PATCH] chore: upgrade --- rpxy-acme/Cargo.toml | 6 +++--- rpxy-bin/Cargo.toml | 6 +++--- rpxy-certs/Cargo.toml | 6 +++--- rpxy-lib/Cargo.toml | 8 ++++---- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/rpxy-acme/Cargo.toml b/rpxy-acme/Cargo.toml index bd8114e..0a12ceb 100644 --- a/rpxy-acme/Cargo.toml +++ b/rpxy-acme/Cargo.toml @@ -16,9 +16,9 @@ post-quantum = ["rustls-post-quantum"] [dependencies] url = { version = "2.5.4" } ahash = "0.8.11" -thiserror = "2.0.9" +thiserror = "2.0.10" tracing = "0.1.41" -async-trait = "0.1.84" +async-trait = "0.1.85" base64 = "0.22.1" aws-lc-rs = { version = "1.12.0", default-features = false, features = [ "aws-lc-sys", @@ -33,6 +33,6 @@ rustls-acme = { path = "../submodules/rustls-acme/", default-features = false, f "aws-lc-rs", ] } rustls-post-quantum = { version = "0.2.1", optional = true } -tokio = { version = "1.42.0", default-features = false } +tokio = { version = "1.43.0", default-features = false } tokio-util = { version = "0.7.13", default-features = false } tokio-stream = { version = "0.1.17", default-features = false } diff --git a/rpxy-bin/Cargo.toml b/rpxy-bin/Cargo.toml index 16bc0d3..21f7fe4 100644 --- a/rpxy-bin/Cargo.toml +++ b/rpxy-bin/Cargo.toml @@ -33,7 +33,7 @@ mimalloc = { version = "*", default-features = false } anyhow = "1.0.95" ahash = "0.8.11" serde = { version = "1.0.217", default-features = false, features = ["derive"] } -tokio = { version = "1.42.0", default-features = false, features = [ +tokio = { version = "1.43.0", default-features = false, features = [ "net", "rt-multi-thread", "time", @@ -41,11 +41,11 @@ tokio = { version = "1.42.0", default-features = false, features = [ "macros", ] } tokio-util = { version = "0.7.13", default-features = false } -async-trait = "0.1.84" +async-trait = "0.1.85" futures-util = { version = "0.3.31", default-features = false } # config -clap = { version = "4.5.23", features = ["std", "cargo", "wrap_help"] } +clap = { version = "4.5.26", features = ["std", "cargo", "wrap_help"] } toml = { version = "0.8.19", default-features = false, features = ["parse"] } hot_reload = "0.1.8" serde_ignored = "0.1.10" diff --git a/rpxy-certs/Cargo.toml b/rpxy-certs/Cargo.toml index f060b1a..0bd9f94 100644 --- a/rpxy-certs/Cargo.toml +++ b/rpxy-certs/Cargo.toml @@ -19,9 +19,9 @@ http3 = [] ahash = { version = "0.8.11" } tracing = { version = "0.1.41" } derive_builder = { version = "0.20.2" } -thiserror = { version = "2.0.9" } +thiserror = { version = "2.0.10" } hot_reload = { version = "0.1.8" } -async-trait = { version = "0.1.84" } +async-trait = { version = "0.1.85" } rustls = { version = "0.23.20", default-features = false, features = [ "std", "aws_lc_rs", @@ -35,7 +35,7 @@ rustls-post-quantum = { version = "0.2.1", optional = true } x509-parser = { version = "0.16.0" } [dev-dependencies] -tokio = { version = "1.42.0", default-features = false, features = [ +tokio = { version = "1.43.0", default-features = false, features = [ "rt-multi-thread", "macros", ] } diff --git a/rpxy-lib/Cargo.toml b/rpxy-lib/Cargo.toml index 511e177..534f847 100644 --- a/rpxy-lib/Cargo.toml +++ b/rpxy-lib/Cargo.toml @@ -41,7 +41,7 @@ ahash = "0.8.11" bytes = "1.9.0" derive_builder = "0.20.2" futures = { version = "0.3.31", features = ["alloc", "async-await"] } -tokio = { version = "1.42.0", default-features = false, features = [ +tokio = { version = "1.43.0", default-features = false, features = [ "net", "rt-multi-thread", "time", @@ -50,12 +50,12 @@ tokio = { version = "1.42.0", default-features = false, features = [ "fs", ] } tokio-util = { version = "0.7.13", default-features = false } -pin-project-lite = "0.2.15" -async-trait = "0.1.84" +pin-project-lite = "0.2.16" +async-trait = "0.1.85" # Error handling anyhow = "1.0.95" -thiserror = "2.0.9" +thiserror = "2.0.10" # http for both server and client http = "1.2.0"