pumpkin/Cargo.toml
Zach Dziura a60c1f63a1 V1.0
Since the last major version, a bunch of additional trait implementations
have been added, including various displays and bitwise operations. The
library should be better documented as well. I feel comfortable
stabilizing the API for future use.
2016-05-10 18:08:42 -04:00

26 lines
616 B
TOML

[package]
name = "pumpkin"
version = "1.0.0"
authors = ["Zach Dziura <zcdziura@gmail.com>"]
description = "A cryptographically secure prime number generator"
repository = "https://github.com/zcdziura/pumpkin"
homepage = "https://zcdziura.github.io/pumpkin/pumpkin"
keywords = ["prime", "number", "cryptography", "generator"]
license = "Unlicense/MIT"
readme = "README.md"
[dependencies]
clippy = {version = "0.0.*", optional = true}
custom_derive = "0.1.*"
newtype_derive = "0.1.*"
ramp = "0.2.*"
rand = "0.3.*"
[lib]
name = "pumpkin"
path = "src/lib.rs"
doctest = false
[features]
dev = ["clippy"]
unstable = []