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. :)
This commit is contained in:
Fabio Valentini 2024-01-02 14:31:41 +01:00 committed by GitHub
parent 1f4dc12631
commit 0157cdb81a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

1
Cargo.lock generated
View file

@ -2094,7 +2094,6 @@ dependencies = [
"thiserror", "thiserror",
"tikv-jemallocator", "tikv-jemallocator",
"tracing", "tracing",
"ureq",
"walkdir", "walkdir",
"wild", "wild",
] ]

View file

@ -63,7 +63,6 @@ insta = { workspace = true, features = ["filters", "json"] }
insta-cmd = { version = "0.4.0" } insta-cmd = { version = "0.4.0" }
tempfile = "3.8.1" tempfile = "3.8.1"
test-case = { workspace = true } test-case = { workspace = true }
ureq = { version = "2.9.1", features = [] }
[target.'cfg(target_os = "windows")'.dependencies] [target.'cfg(target_os = "windows")'.dependencies]
mimalloc = "0.1.39" mimalloc = "0.1.39"