1[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 30