cranpose-core 0.1.101

Core runtime for a Jetpack Compose inspired UI framework in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "std-hash")]
pub mod map {
    pub use std::collections::{hash_map::Entry, HashMap, HashSet};
}

#[cfg(not(feature = "std-hash"))]
pub mod map {
    pub use std::collections::hash_map::Entry;

    pub use ahash::{AHashMap as HashMap, AHashSet as HashSet};
}