jsona_util/lib.rs
1pub mod environment;
2pub mod log;
3pub mod schema;
4pub mod util;
5
6pub type HashMap<K, V> = std::collections::HashMap<K, V, ahash::RandomState>;
7pub type IndexMap<K, V> = indexmap::IndexMap<K, V, ahash::RandomState>;
8
9pub type AsyncMutex<T> = tokio::sync::Mutex<T>;
10pub type AsyncRwLock<T> = tokio::sync::RwLock<T>;