Skip to content

Commit

Permalink
fix(http): dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lennartkloock committed Jan 24, 2025
1 parent d73319b commit b8b9333
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ hyper = { version = "1.5.1", optional = true, features = ["server"] }
hyper-util = { version = "0.1.10", optional = true, features = ["server", "tokio"] }

# For http3 features
h3 = { version = "0", optional = true }
h3-quinn = { version = "0", optional = true }
h3 = { version = "0.0.6", optional = true }
h3-quinn = { version = "0.0.7", optional = true }
quinn = { version = "0.11", optional = true }

# For http3-webtransport features
Expand Down
6 changes: 2 additions & 4 deletions crates/workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ futures-io = { version = "0.3" }
futures-sink = { version = "0.3" }
futures-util = { version = "0.3", default-features = false, features = ["async-await-macro", "channel", "io", "sink"] }
getrandom = { version = "0.2", default-features = false, features = ["std"] }
h3 = { version = "0.0.6", default-features = false, features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"] }
insta = { version = "1", features = ["filters"] }
libc = { version = "0.2", features = ["extra_traits"] }
log = { version = "0.4", default-features = false, features = ["std"] }
Expand Down Expand Up @@ -82,6 +83,7 @@ futures-io = { version = "0.3" }
futures-sink = { version = "0.3" }
futures-util = { version = "0.3", default-features = false, features = ["async-await-macro", "channel", "io", "sink"] }
getrandom = { version = "0.2", default-features = false, features = ["std"] }
h3 = { version = "0.0.6", default-features = false, features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"] }
insta = { version = "1", features = ["filters"] }
itertools = { version = "0.12", default-features = false, features = ["use_alloc"] }
libc = { version = "0.2", features = ["extra_traits"] }
Expand Down Expand Up @@ -119,7 +121,6 @@ hyper = { version = "1", features = ["client", "http1", "http2", "server"] }
hyper-util = { version = "0.1", features = ["client-legacy", "http1", "http2", "server"] }
once_cell = { version = "1" }
rustls = { version = "0.23", features = ["ring"] }
rustls-webpki = { version = "0.102", default-features = false, features = ["aws_lc_rs", "ring", "std"] }
spin = { version = "0.9" }
tokio-rustls = { version = "0.26", features = ["ring"] }

Expand All @@ -129,7 +130,6 @@ hyper = { version = "1", features = ["client", "http1", "http2", "server"] }
hyper-util = { version = "0.1", features = ["client-legacy", "http1", "http2", "server"] }
once_cell = { version = "1" }
rustls = { version = "0.23", features = ["ring"] }
rustls-webpki = { version = "0.102", default-features = false, features = ["aws_lc_rs", "ring", "std"] }
spin = { version = "0.9" }
tokio-rustls = { version = "0.26", features = ["ring"] }

Expand All @@ -140,7 +140,6 @@ hyper-util = { version = "0.1", features = ["client-legacy", "http1", "http2", "
num-traits = { version = "0.2", default-features = false, features = ["i128"] }
once_cell = { version = "1" }
rustls = { version = "0.23", features = ["ring"] }
rustls-webpki = { version = "0.102", default-features = false, features = ["aws_lc_rs", "ring", "std"] }
spin = { version = "0.9" }
tokio-rustls = { version = "0.26", features = ["ring"] }

Expand All @@ -151,7 +150,6 @@ hyper-util = { version = "0.1", features = ["client-legacy", "http1", "http2", "
num-traits = { version = "0.2", default-features = false, features = ["i128"] }
once_cell = { version = "1" }
rustls = { version = "0.23", features = ["ring"] }
rustls-webpki = { version = "0.102", default-features = false, features = ["aws_lc_rs", "ring", "std"] }
spin = { version = "0.9" }
tokio-rustls = { version = "0.26", features = ["ring"] }

Expand Down

0 comments on commit b8b9333

Please sign in to comment.