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

chore: rename intel-tee-quote-verification-rs to teepot-tee-quote-verification-rs #50

Merged
merged 1 commit into from
Mar 12, 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
18 changes: 9 additions & 9 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ authors = ["Harald Hoyer <hh@matterlabs.dev>"]
# has the standard Apache-2.0 OR MIT license
license = "Apache-2.0 OR MIT"
repository = "https://github.com/matter-labs/teepot"
homepage = "https://github.com/matter-labs/teepot"

[workspace.dependencies]
actix-http = "3"
Expand All @@ -28,7 +29,7 @@ enumset = { version = "1.1", features = ["serde", "std"] }
futures-core = { version = "0.3.30", features = ["alloc"], default-features = false }
getrandom = "0.2.12"
hex = { version = "0.4.3", features = ["std"], default-features = false }
intel-tee-quote-verification-rs = { path = "crates/intel-tee-quote-verification-rs" }
intel-tee-quote-verification-rs = { package = "teepot-tee-quote-verification-rs", path = "crates/teepot-tee-quote-verification-rs", version = "0.2.1" }
intel-tee-quote-verification-sys = { version = "0.2.1" }
k256 = "0.13"
log = "0.4"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# Fork of the original crate: https://github.com/intel/SGXDataCenterAttestationPrimitives

[package]
name = "intel-tee-quote-verification-rs"
name = "teepot-tee-quote-verification-rs"
version = "0.2.1"
edition = "2021"
license = "BSD-3-Clause"
repository.workspace = true
homepage.workspace = true
description = "Fork of intel-tee-quote-verification-rs"

[dependencies]
intel-tee-quote-verification-sys.workspace = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2024 Matter Labs

// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright (C) 2011-2021 Intel Corporation. All rights reserved.
Expand Down Expand Up @@ -77,7 +80,7 @@ pub use qvl_sys::tee_supp_data_descriptor_t;
///
/// # Examples
/// ```
/// use intel_tee_quote_verification_rs::*;
/// use teepot_tee_quote_verification_rs::*;
///
/// let policy = sgx_ql_request_policy_t::SGX_QL_DEFAULT;
/// let ret = sgx_qv_set_enclave_load_policy(policy);
Expand All @@ -100,7 +103,7 @@ pub fn sgx_qv_set_enclave_load_policy(policy: sgx_ql_request_policy_t) -> quote3
///
/// # Examples
/// ```
/// use intel_tee_quote_verification_rs::*;
/// use teepot_tee_quote_verification_rs::*;
///
/// let data_size = sgx_qv_get_quote_supplemental_data_size().unwrap();
///
Expand Down Expand Up @@ -200,7 +203,7 @@ pub fn sgx_qv_verify_quote(
///
/// # Examples
/// ```
/// use intel_tee_quote_verification_rs::*;
/// use teepot_tee_quote_verification_rs::*;
///
/// let data_size = tdx_qv_get_quote_supplemental_data_size().unwrap();
///
Expand Down
Loading