rsa/Cargo.toml

23 lines
670 B
TOML
Raw Normal View History

2018-07-17 20:16:31 +02:00
[package]
name = "rsa"
version = "0.1.0"
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
2018-07-17 21:16:31 +02:00
description = "PGP implementation in Rust"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/dignifiedquire/rust-rsa"
repository = "https://github.com/dignifiedquire/rust-rsa"
keywords = ["rsa", "encryption", "security", "public key crypto"]
2018-07-17 20:16:31 +02:00
[dependencies]
2018-07-18 00:07:47 +02:00
# num-bigint = "^0.2"
# num-bigint = { path = "../num-bigint", features = ["rand"] }
num-bigint = { git = "https://github.com/dignifiedquire/num-bigint", features = ["rand"] }
2018-07-17 21:16:31 +02:00
num-traits = "^0.2"
2018-07-18 00:07:47 +02:00
num-integer = "^0.1"
2018-07-19 16:01:17 +02:00
num-iter = "^0.1"
2018-07-18 00:07:47 +02:00
lazy_static = "^1.0"
rand = "^0.5"
2018-07-19 16:01:17 +02:00
byteorder = "^1.2"
failure = "*"