blob: ba57dc1778f81a5463e57d9d454520005a23999f [file] [log] [blame]
Jeff Vander Stoepd036b622020-12-17 19:59:02 +01001[package]
2authors = ["bluss", "The Rust Project Developers"]
3name = "bencher"
4version = "0.1.5"
5
6license = "MIT/Apache-2.0"
7
8repository = "https://github.com/bluss/bencher/"
9documentation = "https://docs.rs/bencher/"
10
11description = "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!)."
12
13keywords = ["benchmark"]
14categories = ["development-tools::profiling", "rust-patterns"]
15
16[lib]
17name = "bencher"
18path = "lib.rs"
19bench = false
20
21[[bench]]
22name = "example"
23harness = false
24
25[dependencies]
26
27[package.metadata.release]
28no-dev-version = true
29