Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
sudo curl -fsSLo /usr/share/keyrings/intel-sgx-deb.asc https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/intel-sgx-deb.asc] https://download.01.org/intel-sgx/sgx_repo/ubuntu noble main" | sudo tee /etc/apt/sources.list.d/intel-sgx.list
sudo apt-get update && sudo apt-get install -y tpm2-tools libtss2-dev libtdx-attest=1.24.100.2-noble1 libtdx-attest-dev=1.24.100.2-noble1
sudo apt-get update && sudo apt-get install -y tpm2-tools libtss2-dev libtdx-attest=1.26.100.1-noble1 libtdx-attest-dev=1.26.100.1-noble1

- name: Install Rust toolchain and components
if: steps.cargo-cache.outputs.cache-hit != 'true'
Expand Down
47 changes: 23 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ members = [
]

[workspace.package]
version = "2.0.0"
version = "2.0.1"
edition = "2024"
license = "BUSL-1.1" # "Business Source License 1.1"
license-file = "LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Collection of Rust libraries for local and remote attestation of Intel SGX/TDX,
| [maa_client](crate/maa_client/) | High-level API for Microsoft Azure Attestation service |
| [pccs_client](crate/pccs_client/) | High-level API for Intel Provisioning Certification Cache Service |
| [ratls](crate/ratls/) | Remote Attestation integration with Transport Layer Security |
| [sev_quote](crate/sev_quote/) | Generation and verification of AMND SEV-SNP attestation report |
| [sev_quote](crate/sev_quote/) | Generation and verification of AMD SEV-SNP attestation report |
| [sgx_pck_extension](crate/sgx_pck_extension/) | Parsing of Intel SGX Provisioning Certification Key ASN.1 extension |
| [sgx_quote](crate/sgx_quote/) | Generation and verification of Intel SGX attestation report |
| [tdx_quote](crate/tdx_quote/) | Generation and verification of Intel TDX attestation report |
Expand Down
Loading