benchplot 0.1.1

Utility for benchmarking functions over various input sizes and plotting the results.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
Copyright 2024 Owain Davies
SPDX-License-Identifier: Apache-2.0 OR MIT
*/

#![deny(missing_docs)]
#![doc = include_str!("../README.md")]

mod bench;
mod util;

pub use bench::{
    Bench, BenchBuilder, BenchBuilderError, BenchFn, BenchFnArg, BenchFnNamed,
    PlotBuilder, PlotBuilderError,
};