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