bellman/Cargo.toml

35 lines
878 B
TOML
Raw Normal View History

2015-12-24 01:58:38 -08:00
[package]
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
2015-12-24 23:37:52 -08:00
description = "zk-SNARK library"
2015-12-24 01:58:38 -08:00
documentation = "https://github.com/ebfull/bellman"
2015-12-24 23:37:52 -08:00
homepage = "https://github.com/ebfull/bellman"
license = "MIT/Apache-2.0"
2015-12-24 23:37:52 -08:00
name = "bellman"
repository = "https://github.com/ebfull/bellman"
2018-03-31 22:23:37 -07:00
version = "0.1.0"
2015-12-24 01:58:38 -08:00
[dependencies]
bit-vec = "0.4.4"
ff = { path = "../ff" }
futures = "0.1"
futures-cpupool = { version = "0.1", optional = true }
group = { path = "../group" }
num_cpus = { version = "1", optional = true }
crossbeam = { version = "0.3", optional = true }
pairing = { path = "../pairing", optional = true }
2019-07-14 04:19:01 -07:00
rand_core = "0.5"
byteorder = "1"
2019-07-10 16:40:20 -07:00
[dev-dependencies]
2019-07-14 04:19:01 -07:00
rand = "0.7"
2019-07-10 16:40:20 -07:00
[features]
2018-07-06 13:51:22 -07:00
groth16 = ["pairing"]
multicore = ["futures-cpupool", "crossbeam", "num_cpus"]
default = ["groth16", "multicore"]
2018-07-06 13:51:22 -07:00
[[test]]
name = "mimc"
path = "tests/mimc.rs"
required-features = ["groth16"]