forked from bytecodealliance/regalloc.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 782 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
[package]
name = "minira-util"
version = "0.1.0"
authors = ["The Regalloc.rs Project Developers"]
edition = "2018"
repository = "https://github.com/bytecodealliance/regalloc.rs"
publish = false
[workspace]
members = [
"lib",
"fuzz"
]
[[bin]]
name = "minira-util"
path = "./bin/minira.rs"
[lib]
name = "minira"
path = "./bin/minira_lib.rs"
[dependencies]
regalloc = { path = "./lib", features = ["fuzzing", "enable-serde"] }
arbitrary = { version = "1.0.1", features = ["derive"]}
rustc-hash = "1.0.1"
log = { version = "0.4.8", default-features = false }
pretty_env_logger = "0.4.0"
clap = "2.33.0"
serde = "1.0.94"
bincode = "1.2.1"
[profile.release]
debug = true
[profile.release.package.minira-util-fuzz]
debug = true
debug-assertions = true
overflow-checks = true