chore: deps

chore: deps
This commit is contained in:
Jun Kurihara 2024-10-24 21:34:04 +09:00
commit ddfaad099c
No known key found for this signature in database
GPG key ID: D992B3E3DE1DED23
5 changed files with 16 additions and 16 deletions

View file

@ -32,10 +32,10 @@ acme = ["dep:rpxy-acme"]
[dependencies]
rand = "0.8.5"
rustc-hash = "2.0.0"
bytes = "1.7.2"
bytes = "1.8.0"
derive_builder = "0.20.2"
futures = { version = "0.3.31", features = ["alloc", "async-await"] }
tokio = { version = "1.40.0", default-features = false, features = [
tokio = { version = "1.41.0", default-features = false, features = [
"net",
"rt-multi-thread",
"time",
@ -44,12 +44,12 @@ tokio = { version = "1.40.0", default-features = false, features = [
"fs",
] }
tokio-util = { version = "0.7.12", default-features = false }
pin-project-lite = "0.2.14"
pin-project-lite = "0.2.15"
async-trait = "0.1.83"
# Error handling
anyhow = "1.0.89"
thiserror = "1.0.64"
anyhow = "1.0.91"
thiserror = "1.0.65"
# http for both server and client
http = "1.1.0"
@ -90,11 +90,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.47.0", default-features = false, features = [
s2n-quic = { version = "1.48.0", default-features = false, features = [
"provider-tls-rustls",
], optional = true }
s2n-quic-core = { version = "0.47.0", default-features = false, optional = true }
s2n-quic-rustls = { version = "0.47.0", optional = true }
s2n-quic-core = { version = "0.48.0", default-features = false, optional = true }
s2n-quic-rustls = { version = "0.48.0", optional = true }
##########
# for UDP socket wit SO_REUSEADDR when h3 with quinn
socket2 = { version = "0.5.7", features = ["all"], optional = true }