std commands can block for an arbitrary duration and so runs risk of blocking tasks for too long. This replaces all such uses where sensible with async processes. Release Notes: - N/A *or* Added/Fixed/Improved ...
10 lines
364 B
Rust
10 lines
364 B
Rust
pub type HashMap<K, V> = FxHashMap<K, V>;
|
|
pub type HashSet<T> = FxHashSet<T>;
|
|
pub type IndexMap<K, V> = indexmap::IndexMap<K, V, rustc_hash::FxBuildHasher>;
|
|
pub type IndexSet<T> = indexmap::IndexSet<T, rustc_hash::FxBuildHasher>;
|
|
|
|
pub use indexmap::Equivalent;
|
|
pub use rustc_hash::FxHasher;
|
|
pub use rustc_hash::{FxHashMap, FxHashSet};
|
|
pub use std::collections::*;
|