-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing fields in Cargo.toml of pcs and dcap-artifact-retrieval c…
…rates
- Loading branch information
Showing
2 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,21 @@ | ||
[package] | ||
name = "dcap-artifact-retrieval" | ||
version = "0.1.0" | ||
authors = ["Raoul Strackx <[email protected]>", "Nikita Shyrei <[email protected]>"] | ||
authors = ["Fortanix, Inc."] | ||
license = "MPL-2.0" | ||
edition = "2018" | ||
description = """ | ||
DCAP artifact retrieval tool for Intel SGX remote attestation. | ||
DCAP attestations require access to Intel-signed artifacts. This library provides clients with | ||
access to these artifacts both from Intel directly, and from Microsoft Azure. | ||
""" | ||
repository = "https://github.com/fortanix/rust-sgx" | ||
documentation = "https://edp.fortanix.com/docs/api/dcap_artifact_retrieval/" | ||
homepage = "https://edp.fortanix.com/" | ||
keywords = ["sgx", "enclave", "dcap"] | ||
categories = ["os", "hardware-support"] | ||
|
||
|
||
[dependencies] | ||
backoff = "0.4.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,22 @@ | ||
[package] | ||
name = "pcs" | ||
version = "0.1.0" | ||
authors = ["Raoul Strackx <[email protected]>", "Nikita Shyrei <[email protected]>"] | ||
authors = ["Fortanix, Inc."] | ||
license = "MPL-2.0" | ||
edition = "2018" | ||
description = "Datastructures related to the Intel Provisioning Certification Service. DCAP attestation requires handling of DCAP artifacts (e.g., PCK certs, TCB info, ...). This crate provides an easy interface for these artifacts" | ||
description = """ | ||
Provisioning Certification Service (PCS) data structures. | ||
Data structures related to the Intel Provisioning Certification Service. | ||
DCAP attestation requires handling of DCAP artifacts (e.g., PCK certs, TCB info, ...). | ||
This crate provides an easy interface for these artifacts. | ||
""" | ||
repository = "https://github.com/fortanix/rust-sgx" | ||
documentation = "https://edp.fortanix.com/docs/api/pcs/" | ||
homepage = "https://edp.fortanix.com/" | ||
keywords = ["sgx", "enclave", "dcap"] | ||
categories = ["os", "hardware-support"] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
dcap-ql = { version = "0.4.0", path = "../dcap-ql", default-features = false } | ||
|