-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (41 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
50 lines (41 loc) · 1.04 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "bench-transformer"
version = "0.1.0"
edition = "2024"
publish = false
[[bench]]
name = "transformer"
harness = false
[[bin]]
name = "oxc"
path = "src/oxc.rs"
test = false
doctest = false
# [[bin]]
# name = "swc"
# path = "src/swc.rs"
# test = false
# doctest = false
[dependencies]
oxc = { version = "0.100.0", features = ["transformer", "codegen", "semantic"] }
# swc = "26.0.0"
# swc_common = "12.0.1"
# swc_ecma_ast = "12.0.0"
# swc_ecma_parser = { version = "15.0.0", features = ["typescript"] }
# swc_ecma_transforms = { version = "20.0.0", features = ["compat"] }
# swc_ecma_transforms_react = "18.0.0"
# swc_ecma_transforms_typescript = "18.0.0"
# swc_ecma_visit = "12.0.0"
num_cpus = "1.16.0"
criterion2 = { version = "3.0.0", default-features = false }
rayon = "1.10.0"
mimalloc= { package = "mimalloc-safe", version = "0.1.52" }
[features]
codspeed = ["criterion2/codspeed"]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = "symbols"
debug = false
panic = "abort"