rsa-pem/Cargo.toml
2019-12-30 21:20:19 -06:00

23 lines
534 B
TOML

[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]
num-bigint = "0.2"
num-bigint-dig = "0.6"
num-traits = "0.2"
pem = "0.7"
rsa = "0.2.0"
thiserror = "1.0.9"
yasna = { version = "0.3", features = ["num-bigint"] }
[dev-dependencies]
rand = "0.7"