Skip to content

Commit

Permalink
chore: fix minimal-versions check
Browse files Browse the repository at this point in the history
Signed-off-by: Wenxuan Zhang <wenxuangm@gmail.com>
  • Loading branch information
wfxr committed Mar 26, 2024
1 parent 848407b commit eb5093c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
5 changes: 3 additions & 2 deletions Cargo.lock

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

16 changes: 10 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,18 @@ hdrhistogram = "7.5"
itertools = "0.12"

[dev-dependencies]
tokio = { version = "1.36", features = ["rt-multi-thread"] }
bytes = "1"
http-body-util = "0.1"
hyper = { version = "1.2", features = ["client"] }
hyper-tls = "0.6"
hyper-util = { version = "0.1", features = [
tokio = { version = "1.36.0", features = ["rt-multi-thread"] }
bytes = "1.6.0"
http-body-util = "0.1.1"
hyper = { version = "1.2.0", features = ["client"] }
hyper-tls = "0.6.0"
hyper-util = { version = "0.1.3", features = [
"client",
"client-legacy",
"http1",
"tokio",
] }

# for minimal-versions
[target.'cfg(any())'.dependencies]
openssl = { version = "0.10.55", optional = true }

0 comments on commit eb5093c

Please sign in to comment.