exstd 0.1.6

exstd is a Rust library that provides a set of commonly used extensions for the Rust standard library, including serialization, asynchronous programming, HTTP requests, logging, error handling, and more.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod serde;
pub mod serde_json;
pub mod serde_yaml;
pub mod tokio;
pub mod reqwest;
pub mod log;
pub mod env_logger;
pub mod anyhow;
pub mod chrono;
pub mod regex;
pub mod clap;
pub mod dotenvy;
pub mod indexmap;
pub mod random;
pub mod rayon;