Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Apr 10, 2024
1 parent 64e8f55 commit 9898869
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions rpxy-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@ anyhow = "1.0.81"
rustc-hash = "1.1.0"
serde = { version = "1.0.197", default-features = false, features = ["derive"] }
derive_builder = "0.20.0"
tokio = { version = "1.36.0", default-features = false, features = [
tokio = { version = "1.37.0", default-features = false, features = [
"net",
"rt-multi-thread",
"time",
"sync",
"macros",
] }
async-trait = "0.1.78"
async-trait = "0.1.79"
rustls-pemfile = "1.0.4"
mimalloc = { version = "*", default-features = false }

# config
clap = { version = "4.5.3", features = ["std", "cargo", "wrap_help"] }
toml = { version = "0.8.11", default-features = false, features = ["parse"] }
clap = { version = "4.5.4", features = ["std", "cargo", "wrap_help"] }
toml = { version = "0.8.12", default-features = false, features = ["parse"] }
hot_reload = "0.1.5"

# logging
Expand Down
16 changes: 8 additions & 8 deletions rpxy-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@ webpki-roots = ["rustls-backend", "hyper-rustls/webpki-tokio"]
[dependencies]
rand = "0.8.5"
rustc-hash = "1.1.0"
bytes = "1.5.0"
bytes = "1.6.0"
derive_builder = "0.20.0"
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",
"rt-multi-thread",
"time",
"sync",
"macros",
"fs",
] }
pin-project-lite = "0.2.13"
async-trait = "0.1.78"
pin-project-lite = "0.2.14"
async-trait = "0.1.79"

# Error handling
anyhow = "1.0.81"
Expand Down Expand Up @@ -83,12 +83,12 @@ tracing = { version = "0.1.40" }
quinn = { version = "0.10.2", optional = true }
h3 = { path = "../submodules/h3/h3/", 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",
], 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-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
socket2 = { version = "0.5.6", features = ["all"], optional = true }

Expand All @@ -98,7 +98,7 @@ lru = { version = "0.12.3", optional = true }
sha2 = { version = "0.10.8", default-features = false, optional = true }

# 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",
"alloc",
"clock",
Expand Down
4 changes: 2 additions & 2 deletions submodules/s2n-quic-h3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ publish = false
bytes = { version = "1", default-features = false }
futures = { version = "0.3", default-features = false }
h3 = { path = "../h3/h3/" }
s2n-quic = "1.34.0"
s2n-quic-core = "0.34.0"
s2n-quic = "1.36.0"
s2n-quic-core = "0.36.0"

0 comments on commit 9898869

Please sign in to comment.