Skip to content

Commit 80577a4

Browse files
authored
Upgrade salsa in fuzzer script (#15040)
1 parent f463fa7 commit 80577a4

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ rand = { version = "0.8.5" }
118118
rayon = { version = "1.10.0" }
119119
regex = { version = "1.10.2" }
120120
rustc-hash = { version = "2.0.0" }
121+
# When updating salsa, make sure to also update the revision in `fuzz/Cargo.toml`
121122
salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "3c7f1694c9efba751dbeeacfbc93b227586e316a" }
122123
schemars = { version = "0.8.16" }
123124
seahash = { version = "4.1.0" }

fuzz/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name = "ruff-fuzz"
33
version = "0.0.0"
44
authors = [
5-
"Charlie Marsh <[email protected]>",
6-
"Addison Crump <[email protected]>",
5+
"Charlie Marsh <[email protected]>",
6+
"Addison Crump <[email protected]>",
77
]
88
publish = false
99
edition = "2021"
@@ -25,11 +25,11 @@ ruff_python_ast = { path = "../crates/ruff_python_ast" }
2525
ruff_python_codegen = { path = "../crates/ruff_python_codegen" }
2626
ruff_python_parser = { path = "../crates/ruff_python_parser" }
2727
ruff_source_file = { path = "../crates/ruff_source_file" }
28-
ruff_python_formatter = { path = "../crates/ruff_python_formatter"}
28+
ruff_python_formatter = { path = "../crates/ruff_python_formatter" }
2929
ruff_text_size = { path = "../crates/ruff_text_size" }
3030

3131
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer", default-features = false }
32-
salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "254c749b02cde2fd29852a7463a33e800b771758" }
32+
salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "3c7f1694c9efba751dbeeacfbc93b227586e316a" }
3333
similar = { version = "2.5.0" }
3434
tracing = { version = "0.1.40" }
3535

0 commit comments

Comments
 (0)