1 2 3 4 5 6 7 8 9 10 11 12 13 14
// SPDX-FileCopyrightText: © 2023 Foundation Devices, Inc. <hello@foundationdevices.com> // SPDX-License-Identifier: GPL-3.0-or-later #![cfg_attr(not(feature = "std"), no_std)] #[cfg(feature = "alloc")] extern crate alloc; extern crate core; pub mod cbor; pub mod passport; pub mod registry; pub mod supply_chain_validation; pub mod value;