forked from matter-labs-archive/sapling-crypto
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
28 lines (24 loc) · 910 Bytes
/
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
[package]
authors = ["Sean Bowe <sean@z.cash>", "Alex Vlasov <alex.m.vlasov@gmail.com>"]
description = "Cryptographic library for Zcash Sapling with more content"
documentation = "https://github.com/matterinc/sapling-crypto"
homepage = "https://github.com/matterinc/sapling-crypto"
license = "MIT/Apache-2.0"
name = "sapling-crypto"
repository = "https://github.com/matterinc/sapling-crypto"
version = "0.0.3"
[lib]
crate-type = ["lib", "staticlib"]
[dependencies]
rand = "0.4"
digest = "0.7"
byteorder = "1"
ff = { git = 'https://github.com/matterinc/ff', features = ["derive"] }
pairing = { git = 'https://github.com/matterinc/pairing', features = ["expose-arith"] }
bellman = { git = 'https://github.com/matterinc/bellman'}
[dependencies.blake2-rfc]
git = "https://github.com/gtank/blake2-rfc"
rev = "7a5b5fc99ae483a0043db7547fb79a6fa44b88a9"
[dev-dependencies]
hex-literal = "0.1"
rust-crypto = "0.2"