This repository has been archived by the owner on Apr 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.73 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
40
41
42
[package]
name = "ark-sapling-mpc-verify"
version = "0.1.0"
edition = "2021"
authors = ["Brandon H. Gomes <bhgomes@pm.me>"]
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/bhgomes/ark-sapling-mpc-verify"
homepage = "https://github.com/bhgomes/ark-sapling-mpc-verify"
documentation = "https://github.com/bhgomes/ark-sapling-mpc-verify"
categories = [""]
keywords = [""]
description = "Verify the Sapling MPC using Arkworks"
publish = false
[package.metadata.docs.rs]
# To build locally:
# RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --all-features --open
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]
[badges]
is-it-maintained-issue-resolution = { repository = "bhgomes/ark-sapling-mpc-verify" }
is-it-maintained-open-issues = { repository = "bhgomes/ark-sapling-mpc-verify" }
maintenance = { status = "actively-developed" }
[features]
# Enable Parallel Computation
parallel = ["crossbeam", "rayon"]
[dependencies]
ark-bls12-381 = { version = "0.3.0", default-features = false, features = ["curve"] }
ark-ec = { version = "0.3.0", default-features = false }
ark-ff = { version = "0.3.0", default-features = false }
blake2 = { version = "0.10.4", default-features = false, features = ["std"] }
byteorder = { version = "1.4.3", default-features = false, features = ["std"] }
crossbeam = { version = "0.8.1", optional = true, default-features = false }
derivative = { version = "2.2.0", default-features = false, features = ["use_core"] }
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
rand = { version = "0.8.5", default-features = false, features = ["getrandom"] }
rand_chacha = { version = "0.3.1", default-features = false }
rayon = { version = "1.5.1", optional = true, default-features = false }