-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
36 lines (32 loc) · 851 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
[package]
name = "wcet-rs"
version = "0.1.0"
authors = ["Hudson Ayers <[email protected]>"]
edition = "2018"
[dependencies]
llvm-ir = "0.8.1" # Needs to be same version as what haybale uses
glob = "0.3.0"
simple_logger = "1.6.0"
log = "0.4.11"
rustc-demangle = "0.1.16"
structopt = "0.3"
clap = { version = "2.33", default-features = false }
regex = "1"
once_cell = "1.17.1"
[dependencies.haybale]
git = "https://github.com/hudson-ayers/haybale"
branch = "partitioning"
# path = "/home/hudson/code_repos/haybale" # comment in when testing local haybale development
features = ["llvm-13", "vendor-boolector"] # Need to match LLVM version used by rust version under test
[profile.dev]
panic = "abort"
lto = true
opt-level = 2
debug = true
codegen-units = 1
[profile.release]
panic = "abort"
lto = true
opt-level = 3
debug = true
codegen-units = 1