-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (52 loc) · 1.3 KB
/
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
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
[workspace]
members = [
"isa",
"traits",
"shims",
"baseline-sim",
"shims",
"macros",
"os",
"application-support",
"test-infrastructure",
"device-support" # TODO: spin off
]
[package] # TODO
name = "lc3-utp"
version = "0.0.0"
autobenches = false
[dev-dependencies]
lc3-baseline-sim = { path = "baseline-sim", version = "0.1.0", default-features = false }
lc3-isa = { path = "isa", version = "0.1.0", default-features = false }
lc3-shims = { path = "shims", version = "0.1.0" }
lc3-traits = { path = "traits", version = "0.1.0", default-features = false, features = [] } # Enable std features
lc3-os = { path = "os", version = "0.1.0" }
lc3tools-sys = "=1.0.6-alpha2" # We can use the next point release (TODO).
criterion = { version = "0.3", features = ["html_reports"] }
async-std = "1.4"
lazy_static = "1.4"
pretty_assertions = "1.2"
[[bench]]
name = "speed"
harness = false
[[bench]]
name = "overhead"
harness = false
[[bench]]
name = "io"
harness = false
[features]
default = []
lto = ["lc3tools-sys/lto"] # For benchmarking.
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = "fat"
debug-assertions = false
codegen-units = 1
# target-cpu = "native"
# panic = "abort"
incremental = false
overflow-checks = false
# TODO: publish all w/CI (check versions match?)