forked from rivosinc/salus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (46 loc) · 1.4 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
# SPDX-FileCopyrightText: 2023 Rivos Inc.
#
# SPDX-License-Identifier: Apache-2.0
[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 }
static_assertions = "1.1"
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" }
ed25519-dalek = { version = "1.0.1", default-features = false, features = ["u64_backend"] }
generic-array = "0.14.5"
hkdf = "0.12.3"
hyp_alloc = { path = "./hyp-alloc" }
memoffset = { version = ">=0.6.5", features = ["unstable_const"] }
page_tracking = { path = "./page-tracking" }
rice = { path = "./rice" }
riscv_page_tables = { path = "./riscv-page-tables" }
riscv_pages = { path = "./riscv-pages" }
riscv_regs = { path = "./riscv-regs" }
s_mode_utils = { path = "./s-mode-utils" }
u_mode_api = { path = "./u-mode-api" }
sbi_rs = { path = "./sbi-rs" }
spin = { version = "*", default-features = false }
sha2 = {version = "0.10", default-features = false }
riscv_elf = { path = "./riscv-elf" }
test_system = { path = "./test-system" }
[workspace]
members = [
"libuser",
"u-mode",
"test-workloads",
]