-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (54 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
67 lines (54 loc) · 1.52 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "mountaineer"
# Bumped automatically by CI on a release
version = "0.1.0"
edition = "2021"
[dependencies]
v8 = "129.0.0"
deno_core_icudata = "0.73.0"
lazy_static = "1.5.0"
pyo3 = { version = "0.23.5", features = ["extension-module", "abi3-py310"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0"
path-absolutize = "3.1.1"
regex = "1.11.1"
md5 = "0.7.0"
walkdir = "2.5.0"
log = "0.4"
env_logger = "0.11"
chrono = "0.4"
# Not currently published to crates.io
# https://github.com/rolldown/rolldown/issues/3227
rolldown = { git = "https://github.com/rolldown/rolldown.git", tag="v1.0.0-beta.60", features = ["experimental"] }
tokio = { version = "1.43.0", features = ["full"] }
indexmap = "2.7.1"
rustc-hash = { version = "2.1" }
# Thread cancellation needs OS bindings
libc = "0.2"
winapi = { version = "0.3", features = ["processthreadsapi"] }
tempfile = "3.16.0"
[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
[lints.rust]
# Global allow to fix pymethods's macro expansion, which can't be
# escaped with an inline #[allow]
non_local_definitions = "allow"