Remove unused dependencies (#3644)

This commit is contained in:
Micha Reiser 2023-03-21 11:02:41 +01:00 committed by GitHub
parent b5edc6dfc9
commit f59a22b6e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 7 deletions

2
Cargo.lock generated
View file

@ -1990,7 +1990,6 @@ dependencies = [
"chrono",
"clap 4.1.8",
"colored",
"criterion",
"dirs",
"fern",
"glob",
@ -2212,7 +2211,6 @@ name = "ruff_python_stdlib"
version = "0.0.0"
dependencies = [
"once_cell",
"regex",
"rustc-hash",
]

View file

@ -68,7 +68,6 @@ toml = { workspace = true }
serde_json = { workspace = true }
[dev-dependencies]
criterion = { version = "0.4.0" }
insta = { workspace = true, features = ["yaml", "redactions"] }
pretty_assertions = "1.3.0"
test-case = { workspace = true }

View file

@ -18,17 +18,17 @@ harness = false
[dependencies]
once_cell.workspace = true
ruff.path = "../ruff"
serde.workspace = true
serde_json.workspace = true
url = "2.3.1"
ureq = "2.6.2"
[dev-dependencies]
ruff.path = "../ruff"
criterion = { version = "0.4.0"}
[target.'cfg(target_os = "windows")'.dependencies]
[target.'cfg(target_os = "windows")'.dev-dependencies]
mimalloc = "0.1.34"
[target.'cfg(all(not(target_os = "windows"), not(target_os = "openbsd"), any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "powerpc64")))'.dependencies]
[target.'cfg(all(not(target_os = "windows"), not(target_os = "openbsd"), any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "powerpc64")))'.dev-dependencies]
tikv-jemallocator = "0.5.0"

View file

@ -9,5 +9,4 @@ rust-version = { workspace = true }
[dependencies]
once_cell = { workspace = true }
regex = { workspace = true }
rustc-hash = { workspace = true }