chore: upgrade

This commit is contained in:
Jun Kurihara 2025-01-10 19:26:27 +09:00
commit b96bba68db
No known key found for this signature in database
GPG key ID: 48ADFD173ED22B03
4 changed files with 13 additions and 13 deletions

View file

@ -16,9 +16,9 @@ post-quantum = ["rustls-post-quantum"]
[dependencies] [dependencies]
url = { version = "2.5.4" } url = { version = "2.5.4" }
ahash = "0.8.11" ahash = "0.8.11"
thiserror = "2.0.9" thiserror = "2.0.10"
tracing = "0.1.41" tracing = "0.1.41"
async-trait = "0.1.84" async-trait = "0.1.85"
base64 = "0.22.1" base64 = "0.22.1"
aws-lc-rs = { version = "1.12.0", default-features = false, features = [ aws-lc-rs = { version = "1.12.0", default-features = false, features = [
"aws-lc-sys", "aws-lc-sys",
@ -33,6 +33,6 @@ rustls-acme = { path = "../submodules/rustls-acme/", default-features = false, f
"aws-lc-rs", "aws-lc-rs",
] } ] }
rustls-post-quantum = { version = "0.2.1", optional = true } 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-util = { version = "0.7.13", default-features = false }
tokio-stream = { version = "0.1.17", default-features = false } tokio-stream = { version = "0.1.17", default-features = false }

View file

@ -33,7 +33,7 @@ mimalloc = { version = "*", default-features = false }
anyhow = "1.0.95" anyhow = "1.0.95"
ahash = "0.8.11" ahash = "0.8.11"
serde = { version = "1.0.217", default-features = false, features = ["derive"] } 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", "net",
"rt-multi-thread", "rt-multi-thread",
"time", "time",
@ -41,11 +41,11 @@ tokio = { version = "1.42.0", default-features = false, features = [
"macros", "macros",
] } ] }
tokio-util = { version = "0.7.13", default-features = false } 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 } futures-util = { version = "0.3.31", default-features = false }
# config # 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"] } toml = { version = "0.8.19", default-features = false, features = ["parse"] }
hot_reload = "0.1.8" hot_reload = "0.1.8"
serde_ignored = "0.1.10" serde_ignored = "0.1.10"

View file

@ -19,9 +19,9 @@ http3 = []
ahash = { version = "0.8.11" } ahash = { version = "0.8.11" }
tracing = { version = "0.1.41" } tracing = { version = "0.1.41" }
derive_builder = { version = "0.20.2" } derive_builder = { version = "0.20.2" }
thiserror = { version = "2.0.9" } thiserror = { version = "2.0.10" }
hot_reload = { version = "0.1.8" } 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 = [ rustls = { version = "0.23.20", default-features = false, features = [
"std", "std",
"aws_lc_rs", "aws_lc_rs",
@ -35,7 +35,7 @@ rustls-post-quantum = { version = "0.2.1", optional = true }
x509-parser = { version = "0.16.0" } x509-parser = { version = "0.16.0" }
[dev-dependencies] [dev-dependencies]
tokio = { version = "1.42.0", default-features = false, features = [ tokio = { version = "1.43.0", default-features = false, features = [
"rt-multi-thread", "rt-multi-thread",
"macros", "macros",
] } ] }

View file

@ -41,7 +41,7 @@ ahash = "0.8.11"
bytes = "1.9.0" bytes = "1.9.0"
derive_builder = "0.20.2" derive_builder = "0.20.2"
futures = { version = "0.3.31", features = ["alloc", "async-await"] } 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", "net",
"rt-multi-thread", "rt-multi-thread",
"time", "time",
@ -50,12 +50,12 @@ tokio = { version = "1.42.0", default-features = false, features = [
"fs", "fs",
] } ] }
tokio-util = { version = "0.7.13", default-features = false } tokio-util = { version = "0.7.13", default-features = false }
pin-project-lite = "0.2.15" pin-project-lite = "0.2.16"
async-trait = "0.1.84" async-trait = "0.1.85"
# Error handling # Error handling
anyhow = "1.0.95" anyhow = "1.0.95"
thiserror = "2.0.9" thiserror = "2.0.10"
# http for both server and client # http for both server and client
http = "1.2.0" http = "1.2.0"