2018-08-28 22:03:52 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
|
|
|
|
description = "zk-SNARK library"
|
2019-08-02 13:57:34 +00:00
|
|
|
readme = "README.md"
|
2018-08-28 22:03:52 +00:00
|
|
|
homepage = "https://github.com/ebfull/bellman"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
name = "bellman"
|
|
|
|
repository = "https://github.com/ebfull/bellman"
|
2020-03-12 21:59:19 +00:00
|
|
|
version = "0.6.0"
|
2019-08-21 00:31:20 +00:00
|
|
|
edition = "2018"
|
2018-08-28 22:03:52 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bit-vec = "0.4.4"
|
2019-08-06 00:13:35 +00:00
|
|
|
blake2s_simd = "0.5"
|
2020-03-12 21:59:19 +00:00
|
|
|
ff = { version = "0.6", path = "../ff" }
|
2018-08-28 22:03:52 +00:00
|
|
|
futures = "0.1"
|
2018-11-04 22:36:11 +00:00
|
|
|
futures-cpupool = { version = "0.1", optional = true }
|
2020-03-12 21:59:19 +00:00
|
|
|
group = { version = "0.6", path = "../group" }
|
2018-11-04 22:36:11 +00:00
|
|
|
num_cpus = { version = "1", optional = true }
|
2019-09-12 18:10:46 +00:00
|
|
|
crossbeam = { version = "0.7", optional = true }
|
2020-03-12 21:59:19 +00:00
|
|
|
pairing = { version = "0.16", path = "../pairing", optional = true }
|
2019-07-14 11:19:01 +00:00
|
|
|
rand_core = "0.5"
|
2018-08-28 22:03:52 +00:00
|
|
|
byteorder = "1"
|
2019-12-12 23:15:48 +00:00
|
|
|
subtle = "2.2.1"
|
2018-08-28 22:03:52 +00:00
|
|
|
|
2019-07-10 23:40:20 +00:00
|
|
|
[dev-dependencies]
|
2019-09-12 18:17:09 +00:00
|
|
|
hex-literal = "0.2"
|
2019-07-14 11:19:01 +00:00
|
|
|
rand = "0.7"
|
2019-08-06 00:13:35 +00:00
|
|
|
rand_xorshift = "0.2"
|
|
|
|
sha2 = "0.8"
|
2019-07-10 23:40:20 +00:00
|
|
|
|
2018-08-28 22:03:52 +00:00
|
|
|
[features]
|
2019-01-06 09:21:44 +00:00
|
|
|
groth16 = ["pairing"]
|
2018-11-04 22:36:11 +00:00
|
|
|
multicore = ["futures-cpupool", "crossbeam", "num_cpus"]
|
|
|
|
default = ["groth16", "multicore"]
|
2019-01-06 09:21:44 +00:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "mimc"
|
|
|
|
path = "tests/mimc.rs"
|
|
|
|
required-features = ["groth16"]
|
2019-10-08 03:05:46 +00:00
|
|
|
|
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|