Skip to content

Commit 3e5b2cd

Browse files
committed
Fix
1 parent 92b69e5 commit 3e5b2cd

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

juniper_warp/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
5656
url = "2.0"
5757
warp = { version = "0.4", features = ["test"] }
5858

59+
# Fixes for `minimal-versions` check.
60+
# TODO: Try remove on upgrade of `warp` crate.
61+
hyper-util = "0.1.12"
62+
63+
5964
[lints.clippy]
6065
allow_attributes = "warn"
6166
allow_attributes_without_reason = "warn"

juniper_warp/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
// TODO: Try remove on upgrade of `warp` crate.
1010
mod for_minimal_versions_check_only {
1111
use http_body_util as _;
12+
#[cfg(test)]
13+
use hyper_util as _;
1214
}
1315

1416
mod response;

0 commit comments

Comments
 (0)