coordinode-lsm-tree 5.8.1

Embedded LSM-tree storage engine in pure Rust, no C/C++ dependency. MVCC snapshots, BuRR filters, zstd dictionary compression, columnar PAX blocks, AES-256-GCM at rest, self-healing per-block ECC, compaction on a near-full disk, no_std support.
Documentation
use super::*;
use test_log::test;

#[test]
fn test_hash64() {
    assert_eq!(16_959_823_422_411_450_475, hash64(&[0, 0, 0]));
    assert_eq!(8_004_557_073_989_523_290, hash64(&[0, 0, 1]));
}

#[test]
fn test_hash128() {
    assert_eq!(
        321_827_061_816_535_117_015_859_907_874_601_773_163,
        hash128(&[0, 0, 0])
    );
    assert_eq!(
        154_036_699_985_066_753_773_347_827_765_470_844_762,
        hash128(&[0, 0, 1])
    );
}