hyper and tokio "full" feature for dev builds only

This was an accidental regression in
d1ee9bfd86 which leads to pulling in the
full featureset of tokio and hyper for all dependents of tokio-boring
and hyper-boring.

Fixes #179.
This commit is contained in:
Sebastian Hahn 2023-10-26 14:18:24 +02:00 committed by Anthony Ramine
parent fa155a1bf2
commit fdef98407c
3 changed files with 5 additions and 5 deletions

View File

@ -27,11 +27,11 @@ libc = "0.2"
hex = "0.4"
rusty-hook = "^0.11"
futures = "0.3"
tokio = { version = "1", features = ["full"] }
tokio = { version = "1" }
anyhow = "1"
antidote = "1.0.0"
http = "0.2"
hyper = { version = "0.14", default-features = false, features = ["full"] }
hyper = { version = "0.14", default-features = false }
linked_hash_set = "0.1"
once_cell = "1.0"
tower-layer = "0.3"

View File

@ -40,6 +40,6 @@ tokio-boring = { workspace = true }
tower-layer = { workspace = true }
[dev-dependencies]
hyper = { workspace = true }
tokio = { workspace = true }
hyper = { workspace = true, features = [ "full" ] }
tokio = { workspace = true, features = [ "full" ] }
futures = { workspace = true }

View File

@ -33,5 +33,5 @@ tokio = { workspace = true }
[dev-dependencies]
futures = { workspace = true }
tokio = { workspace = true }
tokio = { workspace = true, features = [ "full" ] }
anyhow = { workspace = true }