maudit_rolldown_utils 0.1.0

Fork of Rolldown for the Maudit project until Rolldown is published on crates.io
Documentation
1
2
3
4
5
use dashmap::{DashMap, DashSet};
use rustc_hash::FxBuildHasher;

pub type FxDashMap<K, V> = DashMap<K, V, FxBuildHasher>;
pub type FxDashSet<V> = DashSet<V, FxBuildHasher>;