-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
36 lines (30 loc) · 850 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[workspace]
members = ["./napi", "./wasm"]
[package]
name = "tree-shake"
version = "0.1.0"
edition = "2021"
[lib]
[dependencies]
bitflags = "2.6.0"
clap = { version = "4.5.20", features = ["derive"] }
dashmap = "6.0.1"
insta = { version = "1.39.0", features = ["glob"] }
oxc = { version = "0.36.0", features = ["codegen", "semantic", "minifier"] }
regex = "1.10.6"
rustc-hash = "2.0.0"
[dev-dependencies]
codspeed-criterion-compat = "2.7.2"
criterion = "0.5.1"
[[bench]]
name = "basic"
harness = false
[profile.release]
# Configurations explicitly listed here for clarity.
# Using the best options for performance.
opt-level = 3
lto = "fat"
codegen-units = 1
strip = "symbols" # Set to `false` for debug information
debug = false # Set to `true` for debug information
panic = "abort" # Let it crash and force ourselves to write safe Rust