Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing fields in Cargo.toml of pcs and dcap-artifact-retrieval crates #663

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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