forked from rivosinc/salus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 1.11 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
[package]
name = "salus"
version = "0.1.0"
edition = "2021"
[profile.release]
opt-level = "z"
lto = true
strip = "debuginfo"
codegen-units = 1
panic = "abort"
[dependencies]
arrayvec = { version = "0.7.2", default-features = false }
assertions = { path = "./assertions" }
attestation = { path = "./attestation" }
const-oid = { version = "0.9.0", features = ["db"] }
data_model = { path = "./data-model" }
der = "0.6.0"
device_tree = { path = "./device-tree" }
digest = {version = "0.10.3", default-features = false }
drivers = { path = "./drivers" }
generic-array = "0.14.5"
hyp_alloc = { path = "./hyp-alloc" }
memoffset = { version = ">=0.6.5", features = ["unstable_const"] }
page_tracking = { path = "./page-tracking" }
riscv_page_tables = { path = "./riscv-page-tables" }
riscv_pages = { path = "./riscv-pages" }
riscv_regs = { path = "./riscv-regs" }
s_mode_utils = { path = "./s-mode-utils" }
sbi = { path = "./sbi" }
spin = { version = "*", default-features = false }
sha2 = {version = "0.10", default-features = false }
test_workloads = { path = "./test-workloads" }
[workspace]
members = [
"test-workloads",
]