diff --git a/Cargo.toml b/Cargo.toml index 4ea76812c9..7dd38b1f5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -118,6 +118,7 @@ rand = { version = "0.8.5" } rayon = { version = "1.10.0" } regex = { version = "1.10.2" } rustc-hash = { version = "2.0.0" } +# When updating salsa, make sure to also update the revision in `fuzz/Cargo.toml` salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "3c7f1694c9efba751dbeeacfbc93b227586e316a" } schemars = { version = "0.8.16" } seahash = { version = "4.1.0" } diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 02eb20df65..507962c355 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -2,8 +2,8 @@ name = "ruff-fuzz" version = "0.0.0" authors = [ - "Charlie Marsh ", - "Addison Crump ", + "Charlie Marsh ", + "Addison Crump ", ] publish = false edition = "2021" @@ -25,11 +25,11 @@ ruff_python_ast = { path = "../crates/ruff_python_ast" } ruff_python_codegen = { path = "../crates/ruff_python_codegen" } ruff_python_parser = { path = "../crates/ruff_python_parser" } ruff_source_file = { path = "../crates/ruff_source_file" } -ruff_python_formatter = { path = "../crates/ruff_python_formatter"} +ruff_python_formatter = { path = "../crates/ruff_python_formatter" } ruff_text_size = { path = "../crates/ruff_text_size" } libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer", default-features = false } -salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "254c749b02cde2fd29852a7463a33e800b771758" } +salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "3c7f1694c9efba751dbeeacfbc93b227586e316a" } similar = { version = "2.5.0" } tracing = { version = "0.1.40" }