rsa-magic-public-key/Cargo.toml

21 lines
533 B
TOML
Raw Permalink 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"
2023-04-28 00:02:04 +00:00
version = "0.8.0"
2023-04-28 00:06:10 +00:00
license = "AGPL-3.0"
2019-10-01 00:23:36 +00:00
authors = ["asonix <asonix@asonix.dog>"]
edition = "2018"
2023-04-28 00:06:10 +00:00
repository = "https://git.asonix.dog/asonix/rsa-magic-public-key"
2020-07-25 14:34:48 +00:00
readme = "README.md"
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]
2023-01-23 14:43:26 +00:00
base64 = "0.21"
2022-04-08 22:29:57 +00:00
num-bigint-dig = "0.8"
2023-04-28 00:02:04 +00:00
rsa = "0.9.0"
2019-12-31 03:09:18 +00:00
thiserror = "1.0.9"
2019-10-01 00:23:36 +00:00
[dev-dependencies]
2021-03-28 19:58:11 +00:00
rand = "0.8"