Skip to content

Commit

Permalink
AA-Attester: Fix formatting of Cargo.toml
Browse files Browse the repository at this point in the history
Signed-off-by: Suraj Deshmukh <suraj.deshmukh@microsoft.com>
  • Loading branch information
surajssd committed Jan 22, 2024
1 parent 292ca7c commit 0e8ecda
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions attestation-agent/attester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,22 @@ edition = "2021"
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
az-snp-vtpm = { version = "0.4", default-features = false, features = ["attester"], optional = true }
az-tdx-vtpm = { version = "0.4", default-features = false, features = ["attester"], optional = true }
az-snp-vtpm = { version = "0.4", default-features = false, features = [
"attester",
], optional = true }
az-tdx-vtpm = { version = "0.4", default-features = false, features = [
"attester",
], optional = true }
base64.workspace = true
kbs-types.workspace = true
log.workspace = true
nix = {version = "0.26.2", optional = true }
nix = { version = "0.26.2", optional = true }
occlum_dcap = { git = "https://github.com/occlum/occlum", tag = "v0.29.7", optional = true }
serde.workspace = true
serde_json.workspace = true
sev = { version = "1.2.0", default-features = false, features = ["snp"], optional = true }
sev = { version = "1.2.0", default-features = false, features = [
"snp",
], optional = true }
strum.workspace = true
tdx-attest-rs = { git = "https://github.com/intel/SGXDataCenterAttestationPrimitives", tag = "DCAP_1.16", optional = true }
# TODO: change it to "0.1", once released.
Expand All @@ -32,11 +38,19 @@ tokio.workspace = true

[[bin]]
name = "evidence_getter"
required-features = [ "bin" ]
required-features = ["bin"]

[features]
default = ["all-attesters"]
all-attesters = ["tdx-attester", "sgx-attester", "az-snp-vtpm-attester", "az-tdx-vtpm-attester", "snp-attester", "csv-attester", "cca-attester"]
all-attesters = [
"tdx-attester",
"sgx-attester",
"az-snp-vtpm-attester",
"az-tdx-vtpm-attester",
"snp-attester",
"csv-attester",
"cca-attester",
]

tdx-attester = ["tdx-attest-rs"]
sgx-attester = ["occlum_dcap"]
Expand Down

0 comments on commit 0e8ecda

Please sign in to comment.