-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (40 loc) · 748 Bytes
/
Cargo.toml
File metadata and controls
47 lines (40 loc) · 748 Bytes
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
[workspace]
resolver = "2"
members = [
".",
"ember",
"smelt",
"anvil",
"lantern",
"chisel",
"forge",
"nim",
]
[package]
name = "nimble"
version = "0.1.0"
edition = "2024"
[dependencies]
miette = { version = "7", features = ["derive"] }
thiserror = "2"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(feature, values())'] }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"
debug = false
incremental = false
[profile.bench]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = false
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "compiler_perf"
path = "benches/compiler_perf.rs"
harness = false