1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#![no_std]
#![cfg_attr(debug_assertions, warn(missing_docs))]
#![cfg_attr(not(debug_assertions), deny(missing_docs))]
#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(feature = "std")]
extern crate std;
pub mod conv;
pub mod fmt;
pub mod pipe;
pub mod tap;
#[cfg(feature = "std")]
#[macro_use]
pub mod exit;
pub use conv::*;
pub use fmt::*;
pub use pipe::*;
pub use tap::*;
#[cfg(feature = "std")]
pub use exit::*;