-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (37 loc) · 1.59 KB
/
Cargo.toml
File metadata and controls
45 lines (37 loc) · 1.59 KB
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
[package]
name = "SentinelBoot"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "sentinel_boot"
path = "src/main.rs"
[profile.release]
lto = 'fat'
##--------------------------------------------------------------------------------------------------
## Dependencies
##--------------------------------------------------------------------------------------------------
[dependencies]
bsp = { path = "bsp", version = "*" }
riscv64 = { path = "riscv64", version = "*" }
synchronisation = { path = "synchronisation", version = "*" }
console = { path = "console", version = "*" }
driver = { path = "driver", version = "*"}
global_allocator = { path = "global_allocator", version = "*" }
sha2 = { version = "0.10.8", default-features = false }
ed25519-compact = { version = "2.0.4", default-features = false }
pelite = { version = "0.10.0", default-features = false }
##--------------------------------------------------------------------------------------------------
## Workspace
##--------------------------------------------------------------------------------------------------
[workspace]
members = ["bsp", "riscv64", "synchronisation", "console", "driver", "global_allocator"]
##--------------------------------------------------------------------------------------------------
## Features
##--------------------------------------------------------------------------------------------------
[features]
default = []
qemu = ["bsp/qemu", "driver/qemu"]
qemu_vector = ["bsp/qemu", "driver/qemu"]
visionfive = ["bsp/visionfive", "driver/visionfive"]
unmatched = ["bsp/unmatched", "driver/unmatched"]
debug = ["console/debug"]