wang_utils/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3extern crate self as wang_utils;
4pub use wang_utils_fs as fs;
5pub use wang_utils_logger as logger;
6
7#[cfg(feature = "command")]
8#[cfg_attr(docsrs, doc(cfg(feature = "command")))]
9#[doc(no_inline)]
10pub use wang_utils_command as command;
11
12#[cfg(feature = "map")]
13#[cfg_attr(docsrs, doc(cfg(feature = "map")))]
14#[doc(no_inline)]
15pub use wang_utils_map as map;