Skip to content

Commit

Permalink
Fix minimal-versions test
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed May 24, 2024
1 parent 983ba25 commit f65de47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ jobs:
- run: ${{ matrix.deps }}
- name: Maybe minimal versions
if: ${{ matrix.variant == 'minimal_versions' }}
run: cargo generate-lockfile -Z minimal-versions
run: |
cargo generate-lockfile -Z minimal-versions
cargo update regex --precise 1.5.1 # insufficient minimal version of criterion
- name: Maybe nightly
if: ${{ matrix.toolchain == 'nightly' }}
run: |
Expand Down
4 changes: 2 additions & 2 deletions benches/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ publish = false
[dependencies]

[dev-dependencies]
criterion = "0.5"
criterion = "0.5.0"
criterion-cycles-per-byte = "0.6"
rand_core = { version = "0.6", features = ["getrandom"] }
rand_core = { version = "0.6.4", features = ["getrandom"] }
rand_xoshiro = { path = "../rand_xoshiro", version = "0.6" }
rand_isaac = { path = "../rand_isaac", version = "0.3" }
rand_xorshift = { path = "../rand_xorshift", version = "0.3" }
Expand Down

0 comments on commit f65de47

Please sign in to comment.