1#![doc = include_str!("../README.md")]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3
4extern crate self as wang_utils;
5pub use wang_utils_core as core;
7pub use wang_utils_logger as logger;
9pub use wang_utils_json as json;
11
12#[cfg(feature = "command")]
13#[cfg_attr(docsrs, doc(cfg(feature = "command")))]
14#[doc(no_inline)]
15pub use wang_utils_command as command;
17
18#[cfg(feature = "map")]
19#[cfg_attr(docsrs, doc(cfg(feature = "map")))]
20#[doc(no_inline)]
21pub use wang_utils_map as map;
23
24#[cfg(feature = "git")]
25#[cfg_attr(docsrs, doc(cfg(feature = "git")))]
26#[doc(no_inline)]
27pub use wang_utils_git as git;
29
30#[cfg(feature = "queue")]
31#[cfg_attr(docsrs, doc(cfg(feature = "queue")))]
32#[doc(no_inline)]
33pub use wang_utils_queue as queue;