mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-22 23:44:48 +02:00

- vendor unpublished tdx-attest-rs and tdx-attest-sys crates to be able to publish to crates.io - Updated package versions in `Cargo.toml` and `Cargo.lock` to 0.6.0. Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
10 lines
243 B
Rust
10 lines
243 B
Rust
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
#[cfg_attr(all(target_os = "linux", target_arch = "x86_64"), path = "intel.rs")]
|
|
#[cfg_attr(
|
|
not(all(target_os = "linux", target_arch = "x86_64")),
|
|
path = "empty.rs"
|
|
)]
|
|
mod os;
|
|
|
|
pub use os::*;
|