diff --git a/Cargo.lock b/Cargo.lock index 66e8c62a44..9c5a084a58 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1663,7 +1663,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0" dependencies = [ "console 0.15.11", - "globset", "once_cell", "pest", "pest_derive", @@ -1671,7 +1670,6 @@ dependencies = [ "ron", "serde", "similar", - "walkdir", ] [[package]] diff --git a/crates/ruff_python_formatter/Cargo.toml b/crates/ruff_python_formatter/Cargo.toml index 2cb61fdc56..d285f88d22 100644 --- a/crates/ruff_python_formatter/Cargo.toml +++ b/crates/ruff_python_formatter/Cargo.toml @@ -44,7 +44,7 @@ tracing = { workspace = true } ruff_formatter = { workspace = true } datatest-stable = { workspace = true } -insta = { workspace = true, features = ["glob"] } +insta = { workspace = true } regex = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } diff --git a/crates/ruff_python_parser/Cargo.toml b/crates/ruff_python_parser/Cargo.toml index 2b9ecb2b0f..579882ee5e 100644 --- a/crates/ruff_python_parser/Cargo.toml +++ b/crates/ruff_python_parser/Cargo.toml @@ -39,7 +39,7 @@ ruff_source_file = { workspace = true } anyhow = { workspace = true } datatest-stable = { workspace = true } -insta = { workspace = true, features = ["glob"] } +insta = { workspace = true } itertools = { workspace = true } serde = { workspace = true } serde_json = { workspace = true }