vortex_utils/aliases/
mod.rs

1//! Re-exports of third-party crates we use in the API.
2//!
3//! The HashMap/Set should be preferred over the standard library variants or other alternatives.
4//! Currently defers to the excellent [hashbrown](https://docs.rs/hashbrown/latest/hashbrown/) crate.
5
6pub mod hash_map;
7pub mod hash_set;
8
9pub use hashbrown::DefaultHashBuilder;