1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![no_std]
#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
// Apply #![recursion_limit = "256"] only if #![cfg(target_pointer_width = "128")]
#![recursion_limit = "2048"]

#[cfg(feature = "alloc")]
extern crate alloc;

// #[cfg(feature = "runtime-secret")]
pub mod runtime;

mod macros;
mod secret;

pub mod traits;
pub mod types;

pub mod prelude {
    pub use crate::{runtime::*, secret::*, types::*};
}