mirror of https://github.com/astral-sh/ruff
Upgrade salsa in fuzzer script (#15040)
This commit is contained in:
parent
f463fa7b7c
commit
80577a49f8
|
|
@ -118,6 +118,7 @@ rand = { version = "0.8.5" }
|
||||||
rayon = { version = "1.10.0" }
|
rayon = { version = "1.10.0" }
|
||||||
regex = { version = "1.10.2" }
|
regex = { version = "1.10.2" }
|
||||||
rustc-hash = { version = "2.0.0" }
|
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" }
|
salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "3c7f1694c9efba751dbeeacfbc93b227586e316a" }
|
||||||
schemars = { version = "0.8.16" }
|
schemars = { version = "0.8.16" }
|
||||||
seahash = { version = "4.1.0" }
|
seahash = { version = "4.1.0" }
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
name = "ruff-fuzz"
|
name = "ruff-fuzz"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
authors = [
|
authors = [
|
||||||
"Charlie Marsh <charlie.r.marsh@gmail.com>",
|
"Charlie Marsh <charlie.r.marsh@gmail.com>",
|
||||||
"Addison Crump <research@addisoncrump.info>",
|
"Addison Crump <research@addisoncrump.info>",
|
||||||
]
|
]
|
||||||
publish = false
|
publish = false
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
@ -25,11 +25,11 @@ ruff_python_ast = { path = "../crates/ruff_python_ast" }
|
||||||
ruff_python_codegen = { path = "../crates/ruff_python_codegen" }
|
ruff_python_codegen = { path = "../crates/ruff_python_codegen" }
|
||||||
ruff_python_parser = { path = "../crates/ruff_python_parser" }
|
ruff_python_parser = { path = "../crates/ruff_python_parser" }
|
||||||
ruff_source_file = { path = "../crates/ruff_source_file" }
|
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" }
|
ruff_text_size = { path = "../crates/ruff_text_size" }
|
||||||
|
|
||||||
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer", default-features = false }
|
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" }
|
similar = { version = "2.5.0" }
|
||||||
tracing = { version = "0.1.40" }
|
tracing = { version = "0.1.40" }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue