-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (52 loc) · 1.27 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
[workspace]
resolver = "2"
members = [
# The Miralis sources
"src",
# Firmware
"firmware/clint_interrupt",
"firmware/clint_interrupt_multihart",
"firmware/clint_interrupt_priority",
"firmware/csr_ops",
"firmware/default",
"firmware/ecall",
"firmware/hypervisor",
"firmware/pmp",
"firmware/breakpoint",
"firmware/mcause",
"firmware/mret",
"firmware/os_ctx_switch",
"firmware/sandbox",
"firmware/test_protect_payload_firmware",
"firmware/interrupt",
"firmware/os_ecall",
"firmware/device",
"firmware/tracing_firmware",
"firmware/vectored_mtvec",
"firmware/benchmark/ecall_benchmark",
"firmware/benchmark/csr_write",
# Payload
"payload/hello_world",
"payload/test_protect_payload_payload",
"payload/test_keystone_payload",
# Crates
"crates/abi",
"crates/core",
"crates/config_helpers",
"crates/config_select",
"crates/test_helpers",
# Tooling
"runner",
"benchmark_analyzer",
]
# Setting the runner as the default member makes it easier to invoke (no need
# for `--package runner`)
default-members = ["runner"]
[workspace.dependencies]
log = "0.4.17"
[profile.dev]
panic = "abort"
opt-level = 3
[profile.release]
panic = "abort"
codegen-units = 1