bitbelay 0.1.1

A performance evaluation harness for non-cryptographic hash functions
Documentation
1
2
3
4
5
6
7
8
9
10
//! A `bitbelay` command line tool for evaluating the Rust standard library's
//! hasher (via [`RandomState`]).
//!
//! To run: `cargo run --example bitbelay-std --features=cli`

use std::hash::RandomState;

pub fn main() -> anyhow::Result<()> {
    bitbelay::cli::wrapper(RandomState::default())
}