[go: up one dir, main page]

cargo 0.93.0

Cargo, a package manager for Rust.
Documentation
1
2
3
4
5
6
//! 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;