wang_utils/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3
4extern crate self as wang_utils;
5/// 标准库通用工具
6pub use wang_utils_core as core;
7/// 日志相关工具
8pub use wang_utils_logger as logger;
9/// json相关工具
10pub use wang_utils_json as json;
11
12#[cfg(feature = "command")]
13#[cfg_attr(docsrs, doc(cfg(feature = "command")))]
14#[doc(no_inline)]
15/// 命令行相关工具
16pub use wang_utils_command as command;
17
18#[cfg(feature = "map")]
19#[cfg_attr(docsrs, doc(cfg(feature = "map")))]
20#[doc(no_inline)]
21/// map相关工具
22pub use wang_utils_map as map;
23
24#[cfg(feature = "git")]
25#[cfg_attr(docsrs, doc(cfg(feature = "git")))]
26#[doc(no_inline)]
27/// git相关工具
28pub use wang_utils_git as git;
29
30#[cfg(feature = "queue")]
31#[cfg_attr(docsrs, doc(cfg(feature = "queue")))]
32#[doc(no_inline)]
33/// queue相关工具
34pub use wang_utils_queue as queue;