apply hyperium/h3 update

This commit is contained in:
Jun Kurihara 2023-03-31 14:10:45 +09:00
commit 6aa503c745
No known key found for this signature in database
GPG key ID: 48ADFD173ED22B03
6 changed files with 13 additions and 436 deletions

View file

@ -18,8 +18,8 @@ http3 = ["quinn", "h3", "h3-quinn"]
[dependencies]
env_logger = "0.10.0"
anyhow = "1.0.70"
clap = { version = "4.1.14", features = ["std", "cargo", "wrap_help"] }
futures = { version = "0.3.27", features = ["alloc", "async-await"] }
clap = { version = "4.2.1", features = ["std", "cargo", "wrap_help"] }
futures = { version = "0.3.28", features = ["alloc", "async-await"] }
hyper = { version = "0.14.25", default-features = false, features = [
"server",
"http1",
@ -41,7 +41,7 @@ rustls = { version = "0.20.8", default-features = false }
rand = "0.8.5"
toml = { version = "0.7.3", default-features = false, features = ["parse"] }
rustc-hash = "1.1.0"
serde = { version = "1.0.158", default-features = false, features = ["derive"] }
serde = { version = "1.0.159", default-features = false, features = ["derive"] }
hyper-rustls = { version = "0.23.2", default-features = false, features = [
"tokio-runtime",
"webpki-tokio",
@ -49,7 +49,7 @@ hyper-rustls = { version = "0.23.2", default-features = false, features = [
"http2",
] }
bytes = "1.4.0"
quinn = { version = "0.8.5", optional = true }
quinn = { version = "0.9.3", optional = true }
h3 = { path = "./h3/h3/", optional = true }
h3-quinn = { path = "./h3/h3-quinn/", optional = true }
thiserror = "1.0.40"