tuigui 0.23.0

An easy-to-use, highly extensible, and speedy TUI library.
Documentation
1
2
3
4
5
#[cfg(feature = "hashbrown")]
pub type HashMap<K, V> = hashbrown::HashMap<K, V>;

#[cfg(not(feature = "hashbrown"))]
pub type HashMap<K, V> = std::collections::HashMap<K, V>;