-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
55 lines (50 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
[workspace]
resolver = "2"
members = [
"dev-hooks",
"odp-ffa",
"ec-service-lib",
"espi-device",
"espi-device-stub",
"platform/ihv1-sp",
"platform/qemu-sp",
"aarch64-haf",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
aarch64-cpu = "10.0.0"
aarch64-paging = { version = "0.10.0", default-features = false }
aarch64-rt = { version = "0.2.2", default-features = false, features = [
"el1",
"exceptions",
] }
aarch64-haf = { path = "aarch64-haf" }
bit-register = { git = "https://github.com/OpenDevicePartnership/odp-utilities" }
critical-section = { version = "1.1.0", default-features = false }
debug-non-default = { git = "https://github.com/OpenDevicePartnership/odp-utilities" }
ec-service-lib = { path = "ec-service-lib" }
embedded-hal = { git = "https://github.com/rust-embedded/embedded-hal" }
espi-device = { path = "espi-device" }
espi-device-stub = { path = "espi-device-stub" }
odp-ffa = { path = "odp-ffa" }
hafnium = { path = "hafnium" }
log = { version = "0.4", default-features = false }
mockall = "0.13.1"
num_enum = { version = "0.7.3", default-features = false }
num-traits = { version = "0.2.19", default-features = false }
subenum = { version = "1.1.2", default-features = false }
uuid = { version = "1.0", default-features = false, features = ["v1"] }
rstest = "0.26.1"
[workspace.lints.clippy]
suspicious = "deny"
correctness = "deny"
perf = "deny"
style = "deny"
[profile.release]
opt-level = 's'
lto = "fat"
codegen-units = 1
strip = false
debug = true