rsa-magic-public-key/Cargo.toml

20 lines
518 B
TOML
Raw Normal View History

2019-10-01 00:23:36 +00:00
[package]
name = "rsa-magic-public-key"
description = "Converting between the Magic Public Key format and a RustCrypto RSA type"
2020-07-25 14:21:07 +00:00
version = "0.2.0"
2019-10-01 00:23:36 +00:00
license-file = "LICENSE"
authors = ["asonix <asonix@asonix.dog>"]
edition = "2018"
2020-04-21 22:34:12 +00:00
repository = "https://git.asonix.dog/Aardwolf/rsa-magic-public-key"
2019-10-01 00:23:36 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-07-25 14:21:07 +00:00
base64 = "0.12"
2019-12-31 03:20:24 +00:00
num-bigint-dig = "0.6"
2020-07-25 14:21:07 +00:00
rsa = "0.3.0"
2019-12-31 03:09:18 +00:00
thiserror = "1.0.9"
2019-10-01 00:23:36 +00:00
[dev-dependencies]
2019-12-31 03:20:24 +00:00
rand = "0.7"