Skip to content

Commit

Permalink
Remove unused dependencies, sync existing versions (#12446)
Browse files Browse the repository at this point in the history
## Summary

This PR removes unused dependencies from `fuzz` crate and syncs the
`similar` crate to the workspace version. This will help in resolve
#12442.

## Test Plan

Build the fuzz crate:

For Mac (it requires the nightly build):
```
cargo +nightly fuzz build
```
  • Loading branch information
dhruvmanila authored Jul 22, 2024
1 parent d70ceb6 commit f8735e1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,13 @@ cargo-fuzz = true
ruff_linter = { path = "../crates/ruff_linter" }
ruff_python_ast = { path = "../crates/ruff_python_ast" }
ruff_python_codegen = { path = "../crates/ruff_python_codegen" }
ruff_python_index = { path = "../crates/ruff_python_index" }
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_text_size = { path = "../crates/ruff_text_size" }

arbitrary = { version = "1.3.0", features = ["derive"] }
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer", default-features = false }
similar = { version = "2.2.1" }
similar = { version = "2.5.0" }

# Prevent this from interfering with workspaces
[workspace]
Expand Down

0 comments on commit f8735e1

Please sign in to comment.