diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-12-27 17:59:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-27 11:59:57 -0500 |
commit | c2414db1f68d27db8ca6f192f0ff877f1394164c (patch) | |
tree | 528da9796f400557204bfdb8e4d44d64173036ce /test_util/src/servers/mod.rs | |
parent | 33acd437f52b418a8413a302dd8902abad2eabec (diff) |
refactor: simplify hyper, http, h2 deps (#21715)
Main change is that:
- "hyper" has been renamed to "hyper_v014" to signal that it's legacy
- "hyper1" has been renamed to "hyper" and should be the default
Diffstat (limited to 'test_util/src/servers/mod.rs')
-rw-r--r-- | test_util/src/servers/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test_util/src/servers/mod.rs b/test_util/src/servers/mod.rs index 7c4d76e7a..6d8b83414 100644 --- a/test_util/src/servers/mod.rs +++ b/test_util/src/servers/mod.rs @@ -24,7 +24,6 @@ use http_body_util::combinators::UnsyncBoxBody; use http_body_util::BodyExt; use http_body_util::Empty; use http_body_util::Full; -use hyper1 as hyper; use pretty_assertions::assert_eq; use prost::Message; use std::collections::HashMap; |