Skip to content

Commit

Permalink
Fix missing fields in Cargo.toml of pcs and dcap-artifact-retrieval c…
Browse files Browse the repository at this point in the history
…rates
  • Loading branch information
mzohreva committed Dec 6, 2024
1 parent de2e74e commit 18afc7e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 4 deletions.
15 changes: 14 additions & 1 deletion intel-sgx/dcap-artifact-retrieval/Cargo.toml
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"
Expand Down
17 changes: 14 additions & 3 deletions intel-sgx/pcs/Cargo.toml
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 }
Expand Down

0 comments on commit 18afc7e

Please sign in to comment.