forked from jedisct1/rust-blind-rsa-signatures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 1.3 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "blind-rsa-signatures"
version = "0.15.0"
authors = ["Frank Denis <[email protected]>"]
edition = "2018"
description = "RSA blind signatures in pure Rust"
readme = "README.md"
keywords = ["crypto", "rsa", "blind", "signatures"]
homepage = "https://github.com/jedisct1/rust-blind-rsa-signatures"
repository = "https://github.com/jedisct1/rust-blind-rsa-signatures"
categories = ["cryptography"]
license = "MIT"
[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
"derive",
] }
num-integer = { version = "0.1.45", default-features = false }
num-traits = { version = "0.2.15", default-features = false }
rsa = { version = "0.8.1", features = ["expose-internals"], default-features = false }
digest = "0.10.6"
hmac-sha256 = { version = "1.1.6", features = ["traits010"] }
hmac-sha512 = { version = "1.1.4", features = ["traits010", "sha384"] }
derive-new = "0.5.9"
derive_more = "0.99.17"
frame-support = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.37" }
frame-system = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.37" }
[features]
default = ["std"]
std = [
"frame-system/std",
]