-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (37 loc) · 1.01 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
34
35
36
37
38
39
[package]
name = "derec-crypto"
version = "0.1.0"
authors = [ "derec contributors" ]
description = "Cryptography primitives useful for implementing the Decentralized Recovery protocol"
homepage = "https://derecalliance.org/"
repository = "https://github.com/rsinha/derec_crypto"
documentation = "https://docs.rs/derec-crypto/"
keywords = ["cryptography", "secret-sharing", "encryption", "signing" ]
categories = ["cryptography"]
include = ["Cargo.toml", "src", "README.md"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "*", features = ["derive"] }
serde_json = "*"
sha2 = "*"
aead = "*"
aes = "*"
aes-gcm = "*"
anyhow = "*"
rand = "*"
rand_chacha = "*"
ark-std = "*"
ark-ec = "*"
ark-ff = "*"
ark-poly = "*"
ark-serialize = { version = "*", default-features = true }
ark-bls12-381 = "*"
pgp = "0.9.0"
smallvec = "*"
base64 = "*"
hex = "*"
thiserror = "*"
pem = "*"
ecies = {version = "*", features = ["std"]}
libsecp256k1 = "*"