<!-- Thank you for contributing to Ruff! To help us out with reviewing, please consider the following: - Does this pull request include a summary of the change? (See below.) - Does this pull request include a descriptive title? - Does this pull request include references to any relevant issues? --> ## Summary This PR uses rayon to parallelize the stability check by scheduling each project as its own task. <!-- What's the purpose of the change? What does it do, and why? --> ## Test Plan I ran the ecosystem check. It now makes use of all cores (except at the end, there are some large projects). ## Performance The check now completes in minutes where it took about 30 minutes before. <!-- How was it tested? -->
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "ruff_dev"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[dependencies]
|
|
ruff = { path = "../ruff", features = ["schemars"] }
|
|
ruff_cli = { path = "../ruff_cli" }
|
|
ruff_diagnostics = { path = "../ruff_diagnostics" }
|
|
ruff_python_formatter = { path = "../ruff_python_formatter" }
|
|
ruff_python_stdlib = { path = "../ruff_python_stdlib" }
|
|
ruff_textwrap = { path = "../ruff_textwrap" }
|
|
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
itertools = { workspace = true }
|
|
libcst = { workspace = true }
|
|
log = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
pretty_assertions = { version = "1.3.0" }
|
|
regex = { workspace = true }
|
|
rayon = "1.7.0"
|
|
rustpython-format = { workspace = true }
|
|
rustpython-parser = { workspace = true }
|
|
schemars = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
similar = { workspace = true }
|
|
strum = { workspace = true }
|
|
strum_macros = { workspace = true }
|