[[bin]]
name = "prime-formula"
path = "src/main.rs"
[dependencies.bitvec]
version = "1.0.1"
[dependencies.clap]
features = ["derive"]
version = "4.5.37"
[dependencies.num-bigint]
features = ["rand"]
optional = true
version = "0.4.6"
[dependencies.num-format]
features = ["with-system-locale"]
version = "0.4.4"
[dependencies.num-traits]
optional = true
version = "0.2.19"
[dependencies.rand]
version = "0.8"
[dependencies.rayon]
version = "1.10.0"
[features]
big-primes = ["dep:num-traits", "dep:num-bigint"]
constellations = []
[lib]
name = "prime_formula"
path = "src/lib.rs"
[package]
authors = ["Adam Cottrell <cottrela@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "science", "concurrency"]
description = "High-performance prime number generation and constellation finding using novel wheel factorization"
edition = "2024"
keywords = ["primes", "sieve", "mathematics", "number-theory", "rayon"]
license = "MIT"
name = "prime-formula"
readme = "README.md"
repository = "https://github.com/cottrela/prime-formula"
version = "0.3.1"