rsa-pem/Cargo.toml

29 lines
684 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"
2021-03-28 19:41:49 +00:00
version = "0.3.0"
2019-10-01 02:42:37 +00:00
readme = "README.md"
license-file = "LICENSE"
authors = ["asonix <asonix@asonix.dog>"]
edition = "2018"
2020-04-21 22:33:53 +00:00
repository = "https://git.asonix.dog/Aardwolf/rsa-pem"
2019-10-01 02:42:37 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-03-17 01:26:54 +00:00
bit-vec = "0.6"
log = "0.4"
2021-03-28 19:41:49 +00:00
num-bigint = "0.2.0"
num-bigint-dig = "0.7"
2019-10-01 02:42:37 +00:00
num-traits = "0.2"
2020-07-25 14:15:18 +00:00
pem = "0.8"
2021-03-28 19:41:49 +00:00
rsa = "0.4.0"
2019-12-31 03:13:18 +00:00
thiserror = "1.0.9"
2020-03-17 01:26:54 +00:00
yasna = { version = "0.3", features = ["num-bigint", "bit-vec"] }
2019-10-01 02:42:37 +00:00
[dev-dependencies]
2020-03-17 01:26:54 +00:00
pretty_env_logger = "0.4"
2020-03-16 02:36:06 +00:00
anyhow = "1.0"
2021-03-28 19:41:49 +00:00
rand = "0.8"
2020-07-25 14:15:18 +00:00
sha2 = "0.9"