-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
52 lines (42 loc) · 843 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
50
51
52
[package]
name = "bench-parser"
version = "0.1.0"
edition = "2021"
publish = false
[[bench]]
name = "parser"
harness = false
[[bin]]
name = "oxc"
path = "src/oxc.rs"
test = false
doctest = false
[[bin]]
name = "swc"
path = "src/swc.rs"
test = false
doctest = false
[[bin]]
name = "biome"
path = "src/biome.rs"
test = false
doctest = false
[dependencies]
oxc = "0.34.0"
swc_ecma_parser = { version = "3.0.0", features = ["typescript"] }
swc_ecma_ast = "2.0.0"
biome_js_parser = "0.5.7"
biome_js_syntax = "0.5.7"
num_cpus = "1.16.0"
criterion2 = { version = "1.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"