Skip to content

Commit

Permalink
chore: rename intel-tee-quote-verification-rs to teepot-tee-quote-ver…
Browse files Browse the repository at this point in the history
…ification-rs

and prepare to publish on crates.io

Signed-off-by: Harald Hoyer <[email protected]>
  • Loading branch information
haraldh committed Mar 12, 2024
1 parent 28d58c7 commit 8dd4c12
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 14 deletions.
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 <[email protected]>"]
# 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

0 comments on commit 8dd4c12

Please sign in to comment.