microsoft/mu_feature_ffa
Publicmirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable
FfaFeaturePkg/SecurePartitions/MsSecurePartitionRust/Cargo.toml
31lines · modecode
| 1 | [package] |
| 2 | name = "msft-sp" |
| 3 | version = "0.0.1" |
| 4 | edition = "2024" |
| 5 | license = "MIT OR Apache-2.0" |
| 6 | description = "Microsoft QEMU based Secure Partition Service" |
| 7 | authors = ["Kun Qin <kuqin@microsoft.com>"] |
| 8 | repository = "https://github.com/" |
| 9 | keywords = ["arm", "aarch64", "cortex-a"] |
| 10 | categories = ["no-std"] |
| 11 | |
| 12 | [features] |
| 13 | default = [] |
| 14 | |
| 15 | [target.'cfg(target_os = "none")'.dependencies] |
| 16 | aarch64-rt.workspace = true |
| 17 | aarch64-cpu.workspace = true |
| 18 | ec-service-lib.workspace = true |
| 19 | test-service-lib.workspace = true |
| 20 | embassy-aarch64-haf.workspace = true |
| 21 | hafnium.workspace = true |
| 22 | |
| 23 | [dependencies] |
| 24 | embassy-aarch64-haf = { workspace = true, optional = true } |
| 25 | hafnium = { workspace = true, optional = true } |
| 26 | log.workspace = true |
| 27 | embassy-executor.workspace = true |
| 28 | |
| 29 | |
| 30 | [build-dependencies] |
| 31 | chrono = "0.4" |
| 32 | |