Skip to main content

cocoon_tpm_utils_async/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2025 SUSE LLC
3// Author: Nicolai Stange <nstange@suse.de>
4
5#![no_std]
6// Lifetimes are not always obvious at first sight, allow for making them explicit even if
7// redundant.
8#![allow(clippy::needless_lifetimes)]
9
10use cocoon_tpm_utils_common as utils_common;
11
12pub mod alloc;
13pub mod asynchronous;
14pub mod sync_types;
15pub mod test;