2019-02-20 21:06:30 +01:00
|
|
|
[package]
|
2018-07-17 20:16:31 +02:00
|
|
|
name = "rsa"
|
2019-02-25 10:48:17 +01:00
|
|
|
version = "0.1.3-alpha.0"
|
2018-12-03 10:47:09 +00:00
|
|
|
authors = ["RustCrypto Developers", "dignifiedquire <dignifiedquire@gmail.com>"]
|
2019-03-18 09:34:29 -07:00
|
|
|
edition = "2018"
|
2018-12-03 10:47:09 +00:00
|
|
|
description = "Pure Rust RSA implementation"
|
2018-07-17 21:16:31 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2018-12-03 10:47:09 +00:00
|
|
|
documentation = "https://docs.rs/rsa"
|
|
|
|
repository = "https://github.com/RustCrypto/RSA"
|
2018-11-24 12:07:30 +01:00
|
|
|
keywords = ["rsa", "encryption", "security", "crypto"]
|
2018-12-03 10:47:09 +00:00
|
|
|
categories = ["cryptography"]
|
2019-03-19 08:07:14 -07:00
|
|
|
readme = "README.md"
|
2018-07-17 20:16:31 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2019-02-20 18:50:46 +01:00
|
|
|
num-bigint = { version = "0.3", 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"
|
2019-02-20 18:50:46 +01:00
|
|
|
subtle = "2.0.0"
|
2019-02-20 19:17:49 +01:00
|
|
|
clear_on_drop = "0.2.3"
|
2018-07-24 01:01:44 +02:00
|
|
|
|
2019-02-20 20:28:02 +01:00
|
|
|
[dependencies.serde]
|
|
|
|
optional = true
|
|
|
|
version = "1.0.88"
|
|
|
|
default-features = false
|
|
|
|
features = ["std", "derive"]
|
|
|
|
|
2018-07-24 01:01:44 +02:00
|
|
|
[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"
|
2019-02-20 20:28:02 +01:00
|
|
|
serde_test = "1.0.88"
|
|
|
|
|
2018-07-24 15:09:03 +02:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "key"
|
|
|
|
|
2018-07-24 01:01:44 +02:00
|
|
|
[profile.release]
|
2018-07-24 15:09:03 +02:00
|
|
|
# debug = true
|
2018-07-24 01:01:44 +02:00
|
|
|
|
|
|
|
[profile.bench]
|
2019-01-15 21:05:45 +01:00
|
|
|
# debug = true
|
2019-02-20 18:50:46 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2019-02-20 19:17:49 +01:00
|
|
|
nightly = ["subtle/nightly", "clear_on_drop/nightly"]
|
2019-02-20 20:28:02 +01:00
|
|
|
serde1 = ["num-bigint/serde", "serde"]
|
2019-03-16 02:30:32 -07:00
|
|
|
expose-internals = []
|