chore: deps

This commit is contained in:
Jun Kurihara 2024-04-10 11:44:54 +09:00
commit 9898869aa5
No known key found for this signature in database
GPG key ID: 48ADFD173ED22B03
4 changed files with 15 additions and 15 deletions

View file

@ -30,20 +30,20 @@ anyhow = "1.0.81"
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
serde = { version = "1.0.197", default-features = false, features = ["derive"] } serde = { version = "1.0.197", default-features = false, features = ["derive"] }
derive_builder = "0.20.0" derive_builder = "0.20.0"
tokio = { version = "1.36.0", default-features = false, features = [ tokio = { version = "1.37.0", default-features = false, features = [
"net", "net",
"rt-multi-thread", "rt-multi-thread",
"time", "time",
"sync", "sync",
"macros", "macros",
] } ] }
async-trait = "0.1.78" async-trait = "0.1.79"
rustls-pemfile = "1.0.4" rustls-pemfile = "1.0.4"
mimalloc = { version = "*", default-features = false } mimalloc = { version = "*", default-features = false }
# config # config
clap = { version = "4.5.3", features = ["std", "cargo", "wrap_help"] } clap = { version = "4.5.4", features = ["std", "cargo", "wrap_help"] }
toml = { version = "0.8.11", default-features = false, features = ["parse"] } toml = { version = "0.8.12", default-features = false, features = ["parse"] }
hot_reload = "0.1.5" hot_reload = "0.1.5"
# logging # logging

View file

@ -31,10 +31,10 @@ webpki-roots = ["rustls-backend", "hyper-rustls/webpki-tokio"]
[dependencies] [dependencies]
rand = "0.8.5" rand = "0.8.5"
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
bytes = "1.5.0" bytes = "1.6.0"
derive_builder = "0.20.0" derive_builder = "0.20.0"
futures = { version = "0.3.30", features = ["alloc", "async-await"] } futures = { version = "0.3.30", features = ["alloc", "async-await"] }
tokio = { version = "1.36.0", default-features = false, features = [ tokio = { version = "1.37.0", default-features = false, features = [
"net", "net",
"rt-multi-thread", "rt-multi-thread",
"time", "time",
@ -42,8 +42,8 @@ tokio = { version = "1.36.0", default-features = false, features = [
"macros", "macros",
"fs", "fs",
] } ] }
pin-project-lite = "0.2.13" pin-project-lite = "0.2.14"
async-trait = "0.1.78" async-trait = "0.1.79"
# Error handling # Error handling
anyhow = "1.0.81" anyhow = "1.0.81"
@ -83,12 +83,12 @@ tracing = { version = "0.1.40" }
quinn = { version = "0.10.2", optional = true } quinn = { version = "0.10.2", optional = true }
h3 = { path = "../submodules/h3/h3/", optional = true } h3 = { path = "../submodules/h3/h3/", optional = true }
h3-quinn = { path = "../submodules/h3/h3-quinn/", optional = true } h3-quinn = { path = "../submodules/h3/h3-quinn/", optional = true }
s2n-quic = { version = "1.34.0", default-features = false, features = [ s2n-quic = { version = "1.36.0", default-features = false, features = [
"provider-tls-rustls", "provider-tls-rustls",
], optional = true } ], optional = true }
s2n-quic-core = { version = "0.34.0", default-features = false, optional = true } s2n-quic-core = { version = "0.36.0", default-features = false, optional = true }
s2n-quic-h3 = { path = "../submodules/s2n-quic-h3/", optional = true } s2n-quic-h3 = { path = "../submodules/s2n-quic-h3/", optional = true }
s2n-quic-rustls = { version = "0.34.0", optional = true } s2n-quic-rustls = { version = "0.36.0", optional = true }
# for UDP socket wit SO_REUSEADDR when h3 with quinn # for UDP socket wit SO_REUSEADDR when h3 with quinn
socket2 = { version = "0.5.6", features = ["all"], optional = true } socket2 = { version = "0.5.6", features = ["all"], optional = true }
@ -98,7 +98,7 @@ lru = { version = "0.12.3", optional = true }
sha2 = { version = "0.10.8", default-features = false, optional = true } sha2 = { version = "0.10.8", default-features = false, optional = true }
# cookie handling for sticky cookie # cookie handling for sticky cookie
chrono = { version = "0.4.35", default-features = false, features = [ chrono = { version = "0.4.37", default-features = false, features = [
"unstable-locales", "unstable-locales",
"alloc", "alloc",
"clock", "clock",

@ -1 +1 @@
Subproject commit e4c683e478aa4e93cde4164166b58a8174ee173e Subproject commit b44edeb60d234d49c45828395108f7519a048d4b

View file

@ -13,5 +13,5 @@ publish = false
bytes = { version = "1", default-features = false } bytes = { version = "1", default-features = false }
futures = { version = "0.3", default-features = false } futures = { version = "0.3", default-features = false }
h3 = { path = "../h3/h3/" } h3 = { path = "../h3/h3/" }
s2n-quic = "1.34.0" s2n-quic = "1.36.0"
s2n-quic-core = "0.34.0" s2n-quic-core = "0.36.0"