cactusref 0.3.0

Cycle-aware reference counting smart pointer
Documentation
#![allow(clippy::module_name_repetitions)]

use core::hash::BuildHasherDefault;

use rustc_hash::FxHasher;

pub type HashMap<K, V> = hashbrown::HashMap<K, V, BuildHasherDefault<FxHasher>>;
pub type HashSet<T> = hashbrown::HashSet<T, BuildHasherDefault<FxHasher>>;

pub mod hash_map {
    use hashbrown::hash_map;

    pub type Iter<'a, K, V> = hash_map::Iter<'a, K, V>;
    pub type DrainFilter<'a, K, V, F> = hash_map::DrainFilter<'a, K, V, F>;
}