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