bellman/Cargo.toml

45 lines
999 B
TOML
Raw Permalink 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"
readme = "README.md"
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"
2020-11-10 10:33:02 -08:00
version = "0.8.1"
2019-08-20 17:31:20 -07:00
edition = "2018"
2015-12-24 01:58:38 -08:00
[dependencies]
bitvec = "0.18"
blake2s_simd = "0.5"
ff = "0.8"
futures = "0.1"
futures-cpupool = { version = "0.1", optional = true }
group = "0.8"
num_cpus = { version = "1", optional = true }
2019-09-12 11:10:46 -07:00
crossbeam = { version = "0.7", optional = true }
pairing = { version = "0.18", optional = true }
2019-07-14 04:19:01 -07:00
rand_core = "0.5"
byteorder = "1"
2019-12-12 15:15:48 -08:00
subtle = "2.2.1"
2019-07-10 16:40:20 -07:00
[dev-dependencies]
bls12_381 = "0.3"
2019-09-12 11:17:09 -07:00
hex-literal = "0.2"
2019-07-14 04:19:01 -07:00
rand = "0.7"
rand_xorshift = "0.2"
2020-06-25 03:03:14 -07:00
sha2 = "0.9"
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"]
2019-10-07 20:05:46 -07:00
[badges]
maintenance = { status = "actively-developed" }