mirror of
https://github.com/uutils/num-prime.git
synced 2026-06-10 16:12:35 -07:00
- 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
25 lines
457 B
TOML
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"]
|