cargo/util/
hasher.rs

1//! A hasher that produces the same values across releases and platforms.
2//!
3//! The hasher should be fast and have a low chance of collisions (but is not
4//! sufficient for cryptographic purposes).
5
6pub use rustc_stable_hash::StableSipHasher128 as StableHasher;