-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (31 loc) · 836 Bytes
/
Cargo.toml
File metadata and controls
41 lines (31 loc) · 836 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
[package]
name = "wimpl"
version = "0.1.0"
edition = "2021"
[dependencies]
wasabi_wasm = { git = "https://github.com/danleh/wasabi.git", rev = "b45e81259f86d12539b3726ae2c8704ed4d20c76" }
lazy_static = "1.4.0"
# For interning function types and some strings.
arc-interner = "0.7.0"
# For parsing Wimpl text format
nom = "7.1.1"
# For faster HashSet and HashMap in callgraph analysis.
rustc-hash = "1.1.0"
# For hacky analysis of text formats
regex = "1.6.0"
# For easier error handling of executables.
anyhow = "1.0.65"
# For evaluation results collection.
csv = "1.1.6"
[dev-dependencies]
walkdir = "2.3.2"
[profile.release]
opt-level = 3
lto = "fat"
overflow-checks = true
# For profiling with debug info.
debug = 1
[profile.test]
# Necessary to avoid stack overflow for very deeply nested tests.
opt-level = 2
lto = "thin"