Skip to content

Commit

Permalink
Merge pull request #663 from fortanix/mz/fix-missing-fields-in-cargo-…
Browse files Browse the repository at this point in the history
…toml

Fix missing fields in Cargo.toml of pcs and dcap-artifact-retrieval crates
  • Loading branch information
Taowyoo authored Dec 6, 2024
2 parents de2e74e + 18afc7e commit f5cfb9d
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 <raoul.strackx@fortanix.com>", "Nikita Shyrei <nikita.shyrei@fortanix.com>"]
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 <raoul.strackx@fortanix.com>", "Nikita Shyrei <nikita.shyrei@fortanix.com>"]
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 f5cfb9d

Please sign in to comment.