bitbelay 0.1.1

A performance evaluation harness for non-cryptographic hash functions
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(not(feature = "hash-ahash"))]
use std::hash::RandomState as Hasher;
#[cfg(feature = "hash-ahash")]
type Hasher = ahash::RandomState;

use bitbelay::cli::wrapper;

pub fn main() -> anyhow::Result<()> {
    wrapper(Hasher::default())
}