deps: s2n-quic

This commit is contained in:
Jun Kurihara 2024-07-23 13:55:35 +09:00
commit 3657a96955
No known key found for this signature in database
GPG key ID: 48ADFD173ED22B03
5 changed files with 11 additions and 11 deletions

View file

@ -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 }