Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,22 @@ jobs:
components: clippy
- run: cargo clippy -- -D warnings

direct-minimal-versions:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: clippy

- run: cargo update -Z direct-minimal-versions
- run: cargo clippy -- -D warnings

rustfmt:
runs-on: ${{ matrix.os }}
strategy:
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
num-integer = "0.1.44"
num-traits = "0.2.14"
num-integer = "0.1.46"
num-traits = "0.2.18"
num-modular = "0.6.1"
bitvec = "1.0.0"
rand = "0.8.4"
Expand Down
4 changes: 2 additions & 2 deletions bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ num-primes = { version = "0.3.0", optional = true }
[dev-dependencies]
criterion = { version = "4.4.1", package = "codspeed-criterion-compat" }
glass_pumpkin = "1.2.0"
num-bigint = { version = "0.4", features = ["rand"] }
num-bigint = { version = "0.4.6", features = ["rand"] }
num-prime = { path = "..", features = ["big-int"] }
primal-check = "0.3.1"
rand = "0.8"
rand = "0.8.4"
rand_chacha = "0.10"
rand_core = "0.10"

Expand Down