An open API service indexing awesome lists of open source software.

https://github.com/williamvenner/cargo-quickbench

Quickly create a cargo bench package
https://github.com/williamvenner/cargo-quickbench

bench benchmark benchmarking cargo command quickbench subcommand

Last synced: 10 months ago
JSON representation

Quickly create a cargo bench package

Awesome Lists containing this project

README

          

# cargo-quickbench

Simple command to quickly create `cargo bench` packages.

## Installation

`cargo install cargo-quickbench`

## Usage

`cargo quickbench` is a small wrapper around `cargo new` and `cargo init` and works exactly the same way, just prepend `quickbench` to your commands, like so:

```bash
$ cargo quickbench new package-name
$ mkdir quick-benchmark && cd quick-benchmark && cargo quickbench init --verbose
```