Skip to content

Commit

Permalink
tidy up dependency features (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Nov 17, 2023
1 parent 3fc97a0 commit 95ebd8d
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,13 @@ vendored = ["native-tls/vendored"]
[dependencies]
bytes = "1"
http-body-util = "0.1.0"
hyper = { version = "1.0.0", default-features = false }
hyper-util = { version = "0.1.0", default-features = false, features = [
"client-legacy",
"tokio",
] }
hyper = "1"
hyper-util = { version = "0.1.0", features = ["client-legacy", "tokio"] }
native-tls = "0.2.1"
tokio = "1"
tokio-native-tls = "0.3"
tower-service = "0.3"

[dev-dependencies]
hyper-util = { version = "0.1.0", default-features = false, features = [
"http1",
] }
hyper-util = { version = "0.1.0", features = ["http1"] }
tokio = { version = "1.0.0", features = ["io-std", "macros", "io-util"] }

0 comments on commit 95ebd8d

Please sign in to comment.