File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -66,8 +66,7 @@ tokio = { version = "1", features = [
66
66
] }
67
67
tokio-test = " 0.4"
68
68
tokio-util = { version = " 0.6" , features = [" codec" ] }
69
- tower = { version = " 0.4" , features = [" make" ] }
70
- tower-util = " 0.3"
69
+ tower = { version = " 0.4" , features = [" make" , " util" ] }
71
70
url = " 2.2"
72
71
73
72
[target .'cfg(any(target_os = "linux", target_os = "macos"))' .dev-dependencies ]
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use super::Client;
7
7
8
8
#[ tokio:: test]
9
9
async fn client_connect_uri_argument ( ) {
10
- let connector = tower_util :: service_fn ( |dst : http:: Uri | {
10
+ let connector = tower :: service_fn ( |dst : http:: Uri | {
11
11
assert_eq ! ( dst. scheme( ) , Some ( & http:: uri:: Scheme :: HTTP ) ) ;
12
12
assert_eq ! ( dst. host( ) , Some ( "example.local" ) ) ;
13
13
assert_eq ! ( dst. port( ) , None ) ;
You can’t perform that action at this time.
0 commit comments