From 0157cdb81a874b324fefee34ef929dda0ca7789d Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Tue, 2 Jan 2024 14:31:41 +0100 Subject: [PATCH] Drop unused "ureq" dev-dependency from ruff_cli (#9357) ## Summary The `ureq` dev-dependency in the ruff_cli workspace member is unused. There are no code references to `ureq` in that crate. ## Test Plan ruff and its tests continues to compile with the dependency removed. :) --- Cargo.lock | 1 - crates/ruff_cli/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb797b042e01b..ac999fa3e9c1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2094,7 +2094,6 @@ dependencies = [ "thiserror", "tikv-jemallocator", "tracing", - "ureq", "walkdir", "wild", ] diff --git a/crates/ruff_cli/Cargo.toml b/crates/ruff_cli/Cargo.toml index ff3efae87f846..39f35f44b3cf4 100644 --- a/crates/ruff_cli/Cargo.toml +++ b/crates/ruff_cli/Cargo.toml @@ -63,7 +63,6 @@ insta = { workspace = true, features = ["filters", "json"] } insta-cmd = { version = "0.4.0" } tempfile = "3.8.1" test-case = { workspace = true } -ureq = { version = "2.9.1", features = [] } [target.'cfg(target_os = "windows")'.dependencies] mimalloc = "0.1.39"