microsoft/mu_feature_ffa
Publicmirrored from https://github.com/microsoft/mu_feature_ffaAvailable
FfaFeaturePkg/Library/TestServiceLibRust/Cargo.toml
25lines · modecode
| 1 | [package] |
| 2 | name = "test-service-lib" |
| 3 | categories = ["embedded", "no-std"] |
| 4 | version = "0.1.0" |
| 5 | edition = "2024" |
| 6 | license = "MIT" |
| 7 | description = "Provides test services to OS" |
| 8 | readme = "README.md" |
| 9 | keywords = ["embedded", "no-std", "boot", "firmware"] |
| 10 | |
| 11 | [package.metadata.docs.rs] |
| 12 | targets = ["aarch64-unknown-none", "aarch64-unknown-none-softfloat"] |
| 13 | |
| 14 | [dependencies] |
| 15 | uuid.workspace = true |
| 16 | odp-ffa.workspace = true |
| 17 | num_enum.workspace = true |
| 18 | log.workspace = true |
| 19 | ec-service-lib.workspace = true |
| 20 | |
| 21 | [target.'cfg(target_os = "none")'.dependencies] |
| 22 | aarch64-cpu.workspace = true |
| 23 | |
| 24 | [features] |
| 25 | default = [] |
| 26 | |