1#![doc = include_str!("../README.md")]
2#![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")]
13pub mod common;
14
15#[cfg(feature = "times")]
17pub mod times;
18
19#[cfg(feature = "identity")]
21pub mod identity;
22
23#[cfg(feature = "canister")]
25pub mod canister;
26
27#[cfg(feature = "number")]
29pub mod number;
30
31#[cfg(feature = "token")]
33pub mod token;
34
35#[cfg(feature = "http")]
37pub mod http;
38
39#[cfg(feature = "ecdsa")]
41pub mod ecdsa;
42
43#[cfg(feature = "schnorr")]
45pub mod schnorr;
46
47#[cfg(feature = "bitcoin")]
49pub mod bitcoin;
50
51#[cfg(feature = "functions")]
53pub mod functions;
54
55#[cfg(feature = "stable")]
57pub mod stable;
58
59#[cfg(feature = "canister-did")]
61pub mod candid;
62
63pub mod types;