rsa-pem/Cargo.toml

23 lines
530 B
TOML
Raw Normal View History

2019-10-01 02:42:37 +00:00
[package]
name = "rsa-pem"
description = "Converting between the PEM format and a RustCrypto RSA type"
version = "0.1.0"
readme = "README.md"
license-file = "LICENSE"
authors = ["asonix <asonix@asonix.dog>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
failure = "0.1"
num-bigint = "0.2"
num-bigint-dig = "0.4"
num-traits = "0.2"
pem = "0.4"
rsa = "0.1.3"
yasna = { version = "0.3", features = ["num-bigint"] }
[dev-dependencies]
rand = "0.6"