microsoft/mu_feature_ffa

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fix_upload

Branches

Tags

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

Clone

HTTPS

Download ZIP

FfaFeaturePkg/SecurePartitions/MsSecurePartitionRust/Cargo.toml

31lines · modecode

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