3 releases

0.1.2 Mar 5, 2025
0.1.1 Dec 10, 2024
0.1.0 Jul 11, 2024

#17 in Programming languages

Download history 13246/week @ 2024-12-03 16300/week @ 2024-12-10 16132/week @ 2024-12-17 12362/week @ 2024-12-24 13706/week @ 2024-12-31 15329/week @ 2025-01-07 13428/week @ 2025-01-14 11590/week @ 2025-01-21 12195/week @ 2025-01-28 11756/week @ 2025-02-04 11683/week @ 2025-02-11 27523/week @ 2025-02-18 52346/week @ 2025-02-25 82358/week @ 2025-03-04 89223/week @ 2025-03-11 68696/week @ 2025-03-18

299,311 downloads per month
Used in 52 crates (5 directly)

Apache-2.0 OR MIT

54KB
902 lines

rustc-stable-hash

crates.io Documentation

A stable hashing algorithm used by rustc: cross-platform, deterministic, not secure.

This crate provides facilities with the StableHasher structure to create stable hashers over unstable hashers by abstracting over them the handling of endian-ness and the target usize/isize bit size difference.

Currently, this crate provides it's own implementation of 128-bit SipHasher: SipHasher128; with StableSipHasher128 for the stable variant.

Usage

use rustc_stable_hash::hashers::{StableSipHasher128, SipHasher128Hash};
use rustc_stable_hash::FromStableHash;
use std::hash::Hasher;

struct Hash128([u64; 2]);
impl FromStableHash for Hash128 {
    type Hash = SipHasher128Hash;

    fn from(SipHasher128Hash(hash): SipHasher128Hash) -> Hash128 {
        Hash128(hash)
    }
}

let mut hasher = StableSipHasher128::new();
hasher.write_usize(0xFA);

let hash: Hash128 = hasher.finish();

No runtime deps

Features