Files
num-prime/bench/Cargo.toml
codspeed-hq[bot]andGitHub e3ec4ccf69 Setup CodSpeed for continuous performance monitoring
- Replace criterion 0.3 with codspeed-criterion-compat 4.3.0 using
  dependency renaming (no benchmark code changes needed)
- Add CodSpeed GitHub Actions workflow with OIDC authentication
- Add CodSpeed badge to README
2026-02-18 20:43:07 +00:00

25 lines
457 B
TOML

[package]
name = "num-prime-bench"
version = "0.0.0"
publish = false
edition = "2018"
[[bench]]
name = "bench"
harness = false
[dependencies]
num-bigint = "0.4"
num-prime = { path = ".." }
criterion = { version = "4.3.0", package = "codspeed-criterion-compat" }
rand = "0.8"
num-primes = { version = "0.3.0", optional = true }
primal-check = "0.3.1"
number-theory = "0.0.6"
is_prime = "2.0.7"
glass_pumpkin = "1.2.0"
[features]
default = ["num-primes"]