This commit is contained in:
Jun Kurihara 2023-03-15 09:39:51 +09:00
commit 9b95cc1b17
No known key found for this signature in database
GPG key ID: 48ADFD173ED22B03

View file

@ -18,16 +18,16 @@ http3 = ["quinn", "h3", "h3-quinn"]
[dependencies] [dependencies]
env_logger = "0.10.0" env_logger = "0.10.0"
anyhow = "1.0.69" anyhow = "1.0.69"
clap = { version = "4.1.6", features = ["std", "cargo", "wrap_help"] } clap = { version = "4.1.8", features = ["std", "cargo", "wrap_help"] }
futures = { version = "0.3.26", features = ["alloc", "async-await"] } futures = { version = "0.3.27", features = ["alloc", "async-await"] }
hyper = { version = "0.14.24", default-features = false, features = [ hyper = { version = "0.14.25", default-features = false, features = [
"server", "server",
"http1", "http1",
"http2", "http2",
"stream", "stream",
] } ] }
log = "0.4.17" log = "0.4.17"
tokio = { version = "1.25.0", default-features = false, features = [ tokio = { version = "1.26.0", default-features = false, features = [
"net", "net",
"rt-multi-thread", "rt-multi-thread",
"parking_lot", "parking_lot",
@ -39,9 +39,9 @@ tokio-rustls = { version = "0.23.4", features = ["early-data"] }
rustls-pemfile = "1.0.2" rustls-pemfile = "1.0.2"
rustls = { version = "0.20.8", default-features = false } rustls = { version = "0.20.8", default-features = false }
rand = "0.8.5" rand = "0.8.5"
toml = { version = "0.7.2", default-features = false, features = ["parse"] } toml = { version = "0.7.3", default-features = false, features = ["parse"] }
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
serde = { version = "1.0.152", default-features = false, features = ["derive"] } serde = { version = "1.0.156", default-features = false, features = ["derive"] }
hyper-rustls = { version = "0.23.2", default-features = false, features = [ hyper-rustls = { version = "0.23.2", default-features = false, features = [
"tokio-runtime", "tokio-runtime",
"webpki-tokio", "webpki-tokio",
@ -52,7 +52,7 @@ bytes = "1.4.0"
quinn = { version = "0.8.5", optional = true } quinn = { version = "0.8.5", optional = true }
h3 = { path = "./h3/h3/", optional = true } h3 = { path = "./h3/h3/", optional = true }
h3-quinn = { path = "./h3/h3-quinn/", optional = true } h3-quinn = { path = "./h3/h3-quinn/", optional = true }
thiserror = "1.0.38" thiserror = "1.0.39"
x509-parser = "0.14.0" x509-parser = "0.14.0"
derive_builder = "0.12.0" derive_builder = "0.12.0"