pumpkin/Cargo.toml
Zach Dziura 53329646ab v0.3
Increased required Prime bit-length to at least 512-bits. Also updated the
candidate checking process to increment the candidate by 2 only 500 times
before the candidate is reseeded from the OS.
2016-05-05 13:05:22 -04:00

22 lines
476 B
TOML

[package]
name = "pumpkin"
version = "0.3.0"
authors = ["Zach Dziura <zcdziura@gmail.com>"]
description = "A cryptographically secure prime number generator"
repository = "https://github.com/zcdziura/pumpkin"
keywords = ["prime", "number", "cryptography", "generator"]
license = "Unlicense/MIT"
[dependencies]
custom_derive = "0.1.*"
newtype_derive = "0.1.*"
ramp = "0.2.*"
rand = "0.3.*"
[lib]
name = "pumpkin"
path = "src/lib.rs"
doctest = false
[features]
unstable = []