You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
727 B
30 lines
727 B
[package]
|
|
authors = ["bluss", "The Rust Project Developers"]
|
|
name = "bencher"
|
|
version = "0.1.5"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
repository = "https://github.com/bluss/bencher/"
|
|
documentation = "https://docs.rs/bencher/"
|
|
|
|
description = "A port of the libtest (unstable Rust) benchmark runner to Rust stable releases. Supports running benchmarks and filtering based on the name. Benchmark execution works exactly the same way and no more (caveat: black_box is still missing!)."
|
|
|
|
keywords = ["benchmark"]
|
|
categories = ["development-tools::profiling", "rust-patterns"]
|
|
|
|
[lib]
|
|
name = "bencher"
|
|
path = "lib.rs"
|
|
bench = false
|
|
|
|
[[bench]]
|
|
name = "example"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
|
|
[package.metadata.release]
|
|
no-dev-version = true
|
|
|