2
0
Fork 0
mirror of https://github.com/clap-rs/clap synced 2024-12-14 14:52:33 +00:00
1865: Update criterion away from fork r=CreepySkeleton a=pksunkara



Co-authored-by: Pavan Kumar Sunkara <pavan.sss1991@gmail.com>
This commit is contained in:
bors[bot] 2020-04-26 15:06:25 +00:00 committed by GitHub
commit f01dccb88f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions
.github/workflows
Cargo.toml

View file

@ -24,7 +24,7 @@ jobs:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }}
- name: Bench base
run: cargo bench -- -R bencher | tee output.txt
run: cargo bench -- --output-format bencher | tee output.txt
- name: Save base benchmark
uses: pksunkara/github-action-benchmark@v1
with:
@ -37,7 +37,7 @@ jobs:
with:
clean: false
- name: Bench pull request
run: cargo bench -- -R bencher | tee output.txt
run: cargo bench -- --output-format bencher | tee output.txt
- name: Compare benchmarks
uses: pksunkara/github-action-benchmark@v2
with:

View file

@ -77,7 +77,7 @@ clap_derive = { path = "./clap_derive", version = "3.0.0-beta.1", optional = tru
regex = "1.0"
lazy_static = "1"
version-sync = "0.8"
criterion = { git = "git://github.com/pksunkara/criterion.rs", version = "0.3" }
criterion = { git = "git://github.com/bheisler/criterion.rs", version = "0.3" }
[features]
default = ["suggestions", "color", "derive", "std", "cargo"]