#![doc = include_str!("../README.md")]
#![deny(unreachable_pub)] #![deny(unsafe_code)] #![deny(missing_docs)] #![warn(rustdoc::broken_intra_doc_links)] #![warn(clippy::future_not_send)] #![deny(clippy::unwrap_used)] #![deny(clippy::expect_used)] #![deny(clippy::panic)]
#[cfg(feature = "common")]
pub mod common;
#[cfg(feature = "times")]
pub mod times;
#[cfg(feature = "identity")]
pub mod identity;
#[cfg(feature = "canister")]
pub mod canister;
#[cfg(feature = "number")]
pub mod number;
#[cfg(feature = "token")]
pub mod token;
#[cfg(feature = "http")]
pub mod http;
#[cfg(feature = "ecdsa")]
pub mod ecdsa;
#[cfg(feature = "schnorr")]
pub mod schnorr;
#[cfg(feature = "bitcoin")]
pub mod bitcoin;
#[cfg(feature = "functions")]
pub mod functions;
#[cfg(feature = "stable")]
pub mod stable;
#[cfg(feature = "canister-did")]
pub mod candid;
pub mod types;