1 2 3 4 5 6 7 8 9 10 11
// Copyright 2021 ChainSafe Systems
// SPDX-License-Identifier: LGPL-3.0-only
//! Primitive types used within PINT
#![cfg_attr(not(feature = "std"), no_std)]
pub mod fee;
pub mod traits;
pub mod types;
pub use types::*;
1 2 3 4 5 6 7 8 9 10 11
// Copyright 2021 ChainSafe Systems
// SPDX-License-Identifier: LGPL-3.0-only
//! Primitive types used within PINT
#![cfg_attr(not(feature = "std"), no_std)]
pub mod fee;
pub mod traits;
pub mod types;
pub use types::*;