Skip to content

Commit

Permalink
deps: s2n-quic
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Jul 23, 2024
1 parent 9114c77 commit 3657a96
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions rpxy-acme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ publish.workspace = true
[dependencies]
url = { version = "2.5.2" }
rustc-hash = "2.0.0"
thiserror = "1.0.62"
thiserror = "1.0.63"
tracing = "0.1.40"
async-trait = "0.1.81"
base64 = "0.22.1"
aws-lc-rs = { version = "1.8.0", default-features = false, features = [
aws-lc-rs = { version = "1.8.1", default-features = false, features = [
"aws-lc-sys",
] }
blocking = "1.6.1"
Expand Down
2 changes: 1 addition & 1 deletion rpxy-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ futures-util = { version = "0.3.30", default-features = false }

# config
clap = { version = "4.5.9", features = ["std", "cargo", "wrap_help"] }
toml = { version = "0.8.14", default-features = false, features = ["parse"] }
toml = { version = "0.8.15", default-features = false, features = ["parse"] }
hot_reload = "0.1.6"

# logging
Expand Down
4 changes: 2 additions & 2 deletions rpxy-certs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ http3 = []
rustc-hash = { version = "2.0.0" }
tracing = { version = "0.1.40" }
derive_builder = { version = "0.20.0" }
thiserror = { version = "1.0.62" }
thiserror = { version = "1.0.63" }
hot_reload = { version = "0.1.6" }
async-trait = { version = "0.1.81" }
rustls = { version = "0.23.11", default-features = false, features = [
"std",
"aws_lc_rs",
] }
rustls-pemfile = { version = "2.1.2" }
rustls-webpki = { version = "0.102.5", default-features = false, features = [
rustls-webpki = { version = "0.102.6", default-features = false, features = [
"std",
"aws_lc_rs",
] }
Expand Down
8 changes: 4 additions & 4 deletions rpxy-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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 }
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 @@ -15,8 +15,8 @@ futures = { version = "0.3", default-features = false }
h3 = { version = "0.0.6", features = ["tracing"] }
# s2n-quic = { path = "../s2n-quic" }
# s2n-quic-core = { path = "../s2n-quic-core" }
s2n-quic = { version = "1.42.0" }
s2n-quic-core = { version = "0.42.0" }
s2n-quic = { version = "1.43.0" }
s2n-quic-core = { version = "0.43.0" }
tracing = { version = "0.1.40", optional = true }

[features]
Expand Down

0 comments on commit 3657a96

Please sign in to comment.