rsa/Cargo.toml

38 lines
960 B
TOML
Raw Normal View History

2018-07-17 20:16:31 +02:00
[package]
name = "rsa"
version = "0.1.1-alpha.0"
authors = ["RustCrypto Developers", "dignifiedquire <dignifiedquire@gmail.com>"]
description = "Pure Rust RSA implementation"
2018-07-17 21:16:31 +02:00
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/rsa"
repository = "https://github.com/RustCrypto/RSA"
2018-11-24 12:07:30 +01:00
keywords = ["rsa", "encryption", "security", "crypto"]
categories = ["cryptography"]
2018-07-17 20:16:31 +02:00
[dependencies]
#num-bigint-dig = { version = "0.2", features = ["rand", "i128", "u64_digit", "prime"] }
num-bigint = { git = "https://github.com/dignifiedquire/num-bigint", features = ["rand", "i128", "u64_digit", "prime"], package = "num-bigint-dig" }
2018-11-07 14:20:05 +01:00
num-traits = "0.2.6"
num-integer = "0.1.39"
num-iter = "0.1.37"
lazy_static = "1.2.0"
rand = "0.5.5"
byteorder = "1.2.7"
failure = "0.1.3"
subtle = "1.0.0"
[dev-dependencies]
2018-11-07 14:20:05 +01:00
base64 = "0.10.0"
sha-1 = "0.8.0"
sha2 = "0.8.0"
hex = "0.3.2"
[[bench]]
name = "key"
[profile.release]
# debug = true
[profile.bench]
# debug = true