diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 7b45ee8d..908bcd4d 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -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: diff --git a/Cargo.toml b/Cargo.toml index 65ce6958..3ac38619 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"]