From ebc6cbfd1039273c2b9620bd4c70a395afccfc3a Mon Sep 17 00:00:00 2001 From: Xiaobo Liu Date: Wed, 9 Oct 2024 19:06:26 +0800 Subject: [PATCH] Remove unused `matches=0.1` dependency crate The rust 2021 use rust version is 1.56.0, `matches` included in the standard library prelude and thus is automatically in scope. Signed-off-by: Xiaobo Liu --- pingora-core/Cargo.toml | 1 - pingora/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/pingora-core/Cargo.toml b/pingora-core/Cargo.toml index 3534aea9..d9a35425 100644 --- a/pingora-core/Cargo.toml +++ b/pingora-core/Cargo.toml @@ -75,7 +75,6 @@ nix = "~0.24.3" windows-sys = { version = "0.59.0", features = ["Win32_Networking_WinSock"] } [dev-dependencies] -matches = "0.1" env_logger = "0.9" reqwest = { version = "0.11", features = [ "rustls-tls", diff --git a/pingora/Cargo.toml b/pingora/Cargo.toml index b81141a9..9e8cf7c1 100644 --- a/pingora/Cargo.toml +++ b/pingora/Cargo.toml @@ -32,7 +32,6 @@ pingora-cache = { version = "0.3.0", path = "../pingora-cache", optional = true, [dev-dependencies] clap = { version = "3.2.25", features = ["derive"] } tokio = { workspace = true, features = ["rt-multi-thread", "signal"] } -matches = "0.1" env_logger = "0.9" reqwest = { version = "0.11", features = ["rustls"], default-features = false } hyper = "0.14"