microsoft/mu_feature_ffa

Public

mirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
main

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Cargo.toml

23lines · modecode

1[workspace]
2resolver = "2"
3
4# Add packages that generate binaries here
5members = [
6 "FfaFeaturePkg/Library/TestServiceLibRust",
7 "FfaFeaturePkg/SecurePartitions/MsSecurePartitionRust"
8]
9
10# Add packages that generate libraries here
11[workspace.dependencies]
12aarch64-cpu = "11.0.0"
13aarch64-rt = { version = "0.2.2", default-features = false, features = [
14 "el1",
15 "exceptions",
16] }
17aarch64-haf = { git = "https://github.com/OpenDevicePartnership/odp-secure-services", rev = "6776d952" }
18ec-service-lib = { git = "https://github.com/OpenDevicePartnership/odp-secure-services", rev = "6776d952" }
19odp-ffa = { git = "https://github.com/OpenDevicePartnership/odp-secure-services", rev = "6776d952" }
20hafnium = { git = "https://github.com/OpenDevicePartnership/odp-secure-services", rev = "6776d952" }
21log = { version = "0.4", default-features = false }
22uuid = { version = "1.0", default-features = false, features = ["v1"] }
23test-service-lib = { path = "FfaFeaturePkg/Library/TestServiceLibRust" }
24