Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf(es/minifier): Make DCE analyzer parallel #9865

Draft
wants to merge 21 commits into
base: main
Choose a base branch
from
6 changes: 4 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ resolver = "2"
tempfile = "3.6.0"
termcolor = "1.0"
thiserror = "1.0.30"
thread_local = "1.1.8"
tokio = { version = "1", default-features = false }
toml = "0.8.2"
tracing = "0.1.40"
Expand Down
18 changes: 10 additions & 8 deletions crates/swc_ecma_transforms_optimization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@ concurrent = [
debug = []

[dependencies]
dashmap = { workspace = true }
indexmap = { workspace = true }
once_cell = { workspace = true }
petgraph = { workspace = true }
rayon = { workspace = true, optional = true }
rustc-hash = { workspace = true }
serde_json = { workspace = true }
tracing = { workspace = true }
ahash = { workspace = true }
dashmap = { workspace = true }
indexmap = { workspace = true }
once_cell = { workspace = true }
petgraph = { workspace = true }
rayon = { workspace = true, optional = true }
rustc-hash = { workspace = true }
serde_json = { workspace = true }
thread_local = { workspace = true }
tracing = { workspace = true }

swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
Expand Down
Loading
Loading