chore: deps

This commit is contained in:
Jun Kurihara 2024-12-11 10:30:43 +09:00
commit 70a587bc33
No known key found for this signature in database
GPG key ID: 9C5AF0A526862FEF
4 changed files with 24 additions and 24 deletions

View file

@ -37,11 +37,11 @@ post-quantum = [
[dependencies]
rand = "0.8.5"
rustc-hash = "2.0.0"
bytes = "1.8.0"
rustc-hash = "2.1.0"
bytes = "1.9.0"
derive_builder = "0.20.2"
futures = { version = "0.3.31", features = ["alloc", "async-await"] }
tokio = { version = "1.41.1", default-features = false, features = [
tokio = { version = "1.42.0", default-features = false, features = [
"net",
"rt-multi-thread",
"time",
@ -49,16 +49,16 @@ tokio = { version = "1.41.1", default-features = false, features = [
"macros",
"fs",
] }
tokio-util = { version = "0.7.12", default-features = false }
tokio-util = { version = "0.7.13", default-features = false }
pin-project-lite = "0.2.15"
async-trait = "0.1.83"
# Error handling
anyhow = "1.0.93"
thiserror = "2.0.3"
anyhow = "1.0.94"
thiserror = "2.0.6"
# http for both server and client
http = "1.1.0"
http = "1.2.0"
http-body-util = "0.1.2"
hyper = { version = "1.5.1", default-features = false }
hyper-util = { version = "0.1.10", features = ["full"] }
@ -82,7 +82,7 @@ rpxy-certs = { path = "../rpxy-certs/", default-features = false }
hot_reload = "0.1.8"
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"] }
tokio-rustls = { version = "0.26.1", features = ["early-data"] }
# acme
rpxy-acme = { path = "../rpxy-acme/", default-features = false, optional = true }
@ -104,7 +104,7 @@ s2n-quic-h3 = { path = "../submodules/s2n-quic/quic/s2n-quic-h3/", features = [
], optional = true }
##########
# for UDP socket wit SO_REUSEADDR when h3 with quinn
socket2 = { version = "0.5.7", features = ["all"], optional = true }
socket2 = { version = "0.5.8", features = ["all"], optional = true }
# cache
http-cache-semantics = { path = "../submodules/rusty-http-cache-semantics", default-features = false, optional = true }
@ -112,7 +112,7 @@ lru = { version = "0.12.5", optional = true }
sha2 = { version = "0.10.8", default-features = false, optional = true }
# cookie handling for sticky cookie
chrono = { version = "0.4.38", default-features = false, features = [
chrono = { version = "0.4.39", default-features = false, features = [
"unstable-locales",
"alloc",
"clock",