2015-09-24 14:34:12 -04:00
|
|
|
[package]
|
|
|
|
name = "pumpkin"
|
2016-06-01 00:35:51 -04:00
|
|
|
version = "2.0.0"
|
2015-09-24 14:34:12 -04:00
|
|
|
authors = ["Zach Dziura <zcdziura@gmail.com>"]
|
2015-10-20 22:07:33 -04:00
|
|
|
description = "A cryptographically secure prime number generator"
|
|
|
|
repository = "https://github.com/zcdziura/pumpkin"
|
2016-05-10 17:45:42 -04:00
|
|
|
homepage = "https://zcdziura.github.io/pumpkin/pumpkin"
|
2015-10-20 22:07:33 -04:00
|
|
|
keywords = ["prime", "number", "cryptography", "generator"]
|
|
|
|
license = "Unlicense/MIT"
|
2016-05-10 15:07:49 -04:00
|
|
|
readme = "README.md"
|
2015-09-28 00:25:30 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2016-05-10 15:07:49 -04:00
|
|
|
clippy = {version = "0.0.*", optional = true}
|
2015-10-22 17:14:05 -04:00
|
|
|
custom_derive = "0.1.*"
|
|
|
|
newtype_derive = "0.1.*"
|
2015-10-27 14:00:11 -04:00
|
|
|
ramp = "0.2.*"
|
2015-10-22 17:14:05 -04:00
|
|
|
rand = "0.3.*"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "pumpkin"
|
|
|
|
path = "src/lib.rs"
|
2016-05-05 13:05:22 -04:00
|
|
|
doctest = false
|
2015-10-22 17:14:05 -04:00
|
|
|
|
|
|
|
[features]
|
2016-05-10 15:07:49 -04:00
|
|
|
dev = ["clippy"]
|
2015-10-22 17:14:05 -04:00
|
|
|
unstable = []
|