Skip to content

Commit

Permalink
Merge pull request #124 from integer32llc/update-croaring-sys-constraint
Browse files Browse the repository at this point in the history
Add a CI job to check the minimal version constraints of direct dependencies
  • Loading branch information
saulius committed Oct 19, 2023
2 parents 3d0fcf6 + 8c855f5 commit b01b9ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,7 @@ jobs:
- name: Benchmark
if: matrix.rust == 'nightly'
run: cargo +${{ matrix.rust }} bench

- name: Minimal versions
if: matrix.rust == 'nightly'
run: cargo +${{ matrix.rust }} -Zdirect-minimal-versions test
4 changes: 2 additions & 2 deletions croaring/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ roaring = "0.10"
criterion = { version = "0.5", features = ["html_reports"] }

[dependencies]
ffi = { package = "croaring-sys", path = "../croaring-sys", version = "1.0.0" }
byteorder = "1"
ffi = { package = "croaring-sys", path = "../croaring-sys", version = "1.1.0" }
byteorder = "1.4.3"

[[bench]]
name = "benches"
Expand Down

0 comments on commit b01b9ce

Please sign in to comment.