-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (41 loc) · 992 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
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "bench-transformer"
version = "0.1.0"
edition = "2021"
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.42.0", features = ["transformer", "codegen", "semantic"] }
swc = "9.0.1"
swc_common = "5.0.0"
swc_ecma_ast = "5.0.0"
swc_ecma_parser = { version = "6.0.1", features = ["typescript"] }
swc_ecma_transforms = { version = "8.0.0", features = ["compat"] }
swc_ecma_transforms_react = "6.0.0"
swc_ecma_transforms_typescript = "6.0.0"
swc_ecma_visit = "5.0.0"
num_cpus = "1.16.0"
criterion2 = { version = "2.0.0", default-features = false }
rayon = "1.10.0"
mimalloc = "0.1.43"
[features]
codspeed = ["criterion2/codspeed"]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = "symbols"
debug = false
panic = "abort"