Skip to content

Commit

Permalink
Updated hyper, http, and lock file to latest
Browse files Browse the repository at this point in the history
- Removed minor version constraint on hyper and http
- Added approved license BSD-2 Clause to the deny.toml
  • Loading branch information
tkmcmaster committed Jul 31, 2024
1 parent 342fc77 commit 7df5d34
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 67 deletions.
139 changes: 77 additions & 62 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ for_each_parallel = { path = "./lib/for_each_parallel" }
futures = "0.3"
futures-timer = "3"
hdrhistogram = "7"
http = "1.1"
hyper = { version = "1.0", features = ["client", "http1", "http2"] }
http = "1"
hyper = { version = "1", features = ["client", "http1", "http2"] }
hyper-tls = "0.6"
hyper-util = { version = "0.1", features = ["tokio", "client", "http1", "http2"] }
http-body-util = "0.1"
Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ private = { ignore = true }
version = 2
allow = [
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"MIT",
"Unicode-DFS-2016",
Expand Down
2 changes: 1 addition & 1 deletion lib/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ doctest = false
base64 = "0.22"
ether = { path = "../either" }
futures = "0.3"
http = "1.1"
http = "1"
itertools = "0.13"
jsonpath_lib = "0.3.0"
percent-encoding = "2"
Expand Down
4 changes: 2 additions & 2 deletions lib/test_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ path = "test_common.rs"
bytes = "1"
futures = "0.3"
futures-timer = "3"
hyper = { version = "1.4", features = ["http1", "http2"] }
hyper = { version = "1", features = ["http1", "http2"] }
hyper-util = { version = "0.1", features = ["tokio", "server", "http1", "http2"] }
http = "1.1"
http = "1"
http-body-util = "0.1"
parking_lot = "0.12"
tokio = { version = "1", features = ["full"] }
Expand Down

0 comments on commit 7df5d34

Please sign in to comment.