diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index 1322bcf21556f9..8ea69673b6d799 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -1096,8 +1096,6 @@ dependencies = [ "ruff", "ruff_python_ast", "ruff_python_formatter", - "rustpython-ast", - "rustpython-parser", "similar", ] diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 4e50cf7f44cbc9..61e57703c8d94c 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -19,8 +19,6 @@ libfuzzer-sys = { version = "0.4.1" } ruff = { path = "../crates/ruff" } ruff_python_ast = { path = "../crates/ruff_python_ast" } ruff_python_formatter = { path = "../crates/ruff_python_formatter" } -rustpython-ast = { git = "https://github.com/astral-sh/RustPython-Parser.git", rev = "7a3eedbf6fb4ea7068a1bf7fe0e97e963ea95ffd", default-features = false, features = ["all-nodes-with-ranges"]} -rustpython-parser = { git = "https://github.com/astral-sh/RustPython-Parser.git", rev = "7a3eedbf6fb4ea7068a1bf7fe0e97e963ea95ffd", default-features = false, features = ["full-lexer", "all-nodes-with-ranges"] } similar = { version = "2.2.1" } # Prevent this from interfering with workspaces