microsoft/mu_feature_ffa

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a826b6d9b3b41e2ade9c76a4e36c6db9f1f606f2

Branches

Tags

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

Clone

HTTPS

Download ZIP

Cargo.toml

24lines · 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 = "10.0.0"
13aarch64-rt = { version = "0.2.2", default-features = false, features = [
14 "el1",
15 "exceptions",
16] }
17embassy-executor = { version = "0.9.1" }
18embassy-aarch64-haf = { git = "https://github.com/OpenDevicePartnership/haf-ec-service", rev = "76683a18" }
19ec-service-lib = { git = "https://github.com/OpenDevicePartnership/haf-ec-service", rev = "76683a18" }
20odp-ffa = { git = "https://github.com/OpenDevicePartnership/haf-ec-service", rev = "76683a18" }
21hafnium = { git = "https://github.com/OpenDevicePartnership/haf-ec-service", rev = "76683a18" }
22log = { version = "0.4", default-features = false }
23uuid = { version = "1.0", default-features = false, features = ["v1"] }
24test-service-lib = { path = "FfaFeaturePkg/Library/TestServiceLibRust" }
25