1#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
2#![warn(
3 clippy::unwrap_used,
4 missing_docs,
5 rust_2018_idioms,
6 unused_lifetimes,
7 unused_qualifications
8)]
9#![doc = include_str!("../README.md")]
10#![allow(missing_docs)]
11#![allow(unused_imports)]
12#![allow(dead_code)]
13
14mod error;
22pub use error::*;
23
24mod t_builder;
29#[doc(inline)]
30pub use t_builder::*;
31
32mod t_crypto;
33#[doc(inline)]
34pub use t_crypto::*;
35
36mod t_ctx;
37#[doc(inline)]
38pub use t_ctx::*;
39
40mod t_io;
41#[doc(inline)]
42pub use t_io::*;
43
44mod t_keys;
45#[doc(inline)]
46pub use t_keys::*;
47
48mod t_parser;
49#[doc(inline)]
50pub use t_parser::*;