From 5b78ccef9742585971a72523731913c3ba995f04 Mon Sep 17 00:00:00 2001 From: Zanie Date: Mon, 17 Jul 2023 17:53:25 -0500 Subject: [PATCH] Update parser pin in fuzzer --- fuzz/Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 27f3f169309865..71987e0f760f67 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -23,9 +23,7 @@ ruff = { path = "../crates/ruff" } ruff_python_ast = { path = "../crates/ruff_python_ast" } ruff_python_formatter = { path = "../crates/ruff_python_formatter" } similar = { version = "2.2.1" } - -# Current tag: v0.0.7 -rustpython-parser = { git = "https://github.com/astral-sh/RustPython-Parser.git", rev = "b996b21ffca562ecb2086f632a6a0b05c245c24a" , default-features = false, features = ["full-lexer", "num-bigint"] } +rustpython-parser = { git = "https://github.com/astral-sh/RustPython-Parser.git", rev = "126652b684910c29a7bcc32293d4ca0f81454e34" , default-features = false, features = ["full-lexer", "num-bigint"] } # Prevent this from interfering with workspaces [workspace]