-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
55 lines (43 loc) · 1.05 KB
/
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
53
54
55
[package]
name = "mountaineer"
# Bumped automatically by CI on a release
version = "0.1.0"
edition = "2021"
[dependencies]
v8 = "0.89.0"
deno_core_icudata = "0.73.0"
lazy_static = "1.4.0"
pyo3 = { version = "0.20", features = ["extension-module"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0"
path-absolutize = "3.1.1"
regex = "1.10.3"
md5 = "0.7.0"
log = "0.4"
env_logger = "0.11"
src_go = { path = "./src_go" }
# Thread cancellation needs OS bindings
libc = "0.2"
winapi = { version = "0.3", features = ["processthreadsapi"] }
tempfile = "3.10.1"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[profile.release]
opt-level = 3
debug = false
lto = true
incremental = false
[package.metadata.maturin]
name = "mountaineer"
[[bench]]
path = "src/benches/source_map_benchmark.rs"
name = "source_map_benchmark"
harness = false
[[bench]]
path = "src/benches/ssr_benchmark.rs"
name = "ssr_benchmark"
harness = false
[[bench]]
path = "src/benches/lexers_benchmark.rs"
name = "lexers_benchmark"
harness = false