blob: 93c88bb4bf9a45bbc038f1a169807ae7b7b6da17 [file] [edit]
//! A hasher that produces the same values across releases and platforms.
//!
//! The hasher should be fast and have a low chance of collisions (but is not
//! sufficient for cryptographic purposes).
pub use rustc_stable_hash::StableSipHasher128 as StableHasher;