mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
82d70d82c4
Being a patch release, I'm fine doing this outside of a minor release. This avoids us having to deal with indexmap having a higher MSRV.
46 lines
836 B
TOML
46 lines
836 B
TOML
[package]
|
|
name = "clap_bench"
|
|
version = "0.0.0"
|
|
description = "Benchmarks for clap"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
rust-version = "1.56.1" # MSRV
|
|
publish = false
|
|
|
|
[package.metadata.release]
|
|
release = false
|
|
|
|
[dev-dependencies]
|
|
clap = { path = "../", version = "3.2.1", default-features = false, features = ["std"] }
|
|
criterion = "0.3.2"
|
|
lazy_static = "1"
|
|
|
|
[[bench]]
|
|
harness = false
|
|
name = "01_default"
|
|
path = "benches/01_default.rs"
|
|
|
|
[[bench]]
|
|
harness = false
|
|
name = "02_simple"
|
|
path = "benches/02_simple.rs"
|
|
|
|
[[bench]]
|
|
harness = false
|
|
name = "03_complex"
|
|
path = "benches/03_complex.rs"
|
|
|
|
[[bench]]
|
|
harness = false
|
|
name = "04_new_help"
|
|
path = "benches/04_new_help.rs"
|
|
|
|
[[bench]]
|
|
harness = false
|
|
name = "05_ripgrep"
|
|
path = "benches/05_ripgrep.rs"
|
|
|
|
[[bench]]
|
|
harness = false
|
|
name = "06_rustup"
|
|
path = "benches/06_rustup.rs"
|