microsoft/mu_feature_ffa

Public

mirrored from https://github.com/microsoft/mu_feature_ffaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
update_rust

Branches

Tags

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

Clone

HTTPS

Download ZIP

FfaFeaturePkg/Library/TestServiceLibRust/Cargo.toml

25lines · modecode

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