diff --git a/Cargo.toml b/Cargo.toml index 3750ed3855..ecee8dd277 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,6 +45,7 @@ tracing = { version = "0.1", default-features = false, features = ["std"], optio want = { version = "0.3", optional = true } [dev-dependencies] +form_urlencoded = "1" futures-util = { version = "0.3", default-features = false, features = ["alloc"] } http-body-util = "=0.1.0-rc.3" pretty_env_logger = "0.5" @@ -63,7 +64,7 @@ tokio_wasi = { version = "1", features = [ "time", "test-util", ] } -url = "2.2" +tokio-test = "0.4" [features] # Nothing by default diff --git a/examples/params.rs b/examples/params.rs index d946e2ee01..fa51a42c40 100644 --- a/examples/params.rs +++ b/examples/params.rs @@ -11,7 +11,6 @@ use tokio::net::TcpListener; use std::collections::HashMap; use std::convert::Infallible; use std::net::SocketAddr; -use url::form_urlencoded; #[path = "../benches/support/mod.rs"] mod support;