[package]
name = "primal-slowsieve"
version = "0.3.2"
authors = ["Huon Wilson <dbau.pp@gmail.com>"]
edition = "2018"
homepage = "https://github.com/huonw/primal"
repository = "https://github.com/huonw/primal"
documentation = "https://docs.rs/primal-slowsieve/"
license = "MIT OR Apache-2.0"
keywords = ["math", "mathematics", "primes", "number-theory"]
description = """
A simple sieve of Eratosthenes designed for testing faster sieves. You
probably want `primal-sieve`, or even just `primal` itself.
"""
[dependencies]
primal-bit = { path = "../primal-bit", version = "0.3" }
primal-estimate = { path = "../primal-estimate", version = "0.3" }
[dev-dependencies]
criterion = { version = "0.3.4", features = ["html_reports"] }
[[bench]]
name = "bench"
harness = false
[features]
unstable = []
slow_tests = []