From 00e57a1f56b6e66def32fd77d4280a27bfa91e68 Mon Sep 17 00:00:00 2001 From: tottoto Date: Sat, 28 Oct 2023 19:58:42 +0900 Subject: [PATCH] chore(dependencies): use form_urlencoded crate directly (#3376) --- Cargo.toml | 3 ++- examples/params.rs | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) 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;