2015-12-24 11:58:38 +02:00
|
|
|
[package]
|
2018-12-21 06:24:33 +03:00
|
|
|
authors = ["Sean Bowe <ewillbefull@gmail.com>", "Alex Vlasov <alex.m.vlasov@gmail.com>", "Alex Gluchowski <alex@gluchowski.net"]
|
2015-12-25 09:37:52 +02:00
|
|
|
description = "zk-SNARK library"
|
2019-03-31 09:08:33 +03:00
|
|
|
documentation = "https://github.com/matter-labs/bellman"
|
|
|
|
homepage = "https://github.com/matter-labs/bellman"
|
2016-01-12 23:14:06 +02:00
|
|
|
license = "MIT/Apache-2.0"
|
2019-03-31 09:08:33 +03:00
|
|
|
name = "bellman_ce"
|
|
|
|
repository = "https://github.com/matter-labs/bellman"
|
2019-07-13 16:58:25 +03:00
|
|
|
version = "0.3.1"
|
2019-03-04 23:04:39 +03:00
|
|
|
edition = "2018"
|
2019-01-23 21:02:11 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "lib", "staticlib"]
|
2015-12-24 11:58:38 +02:00
|
|
|
|
2015-12-25 14:52:14 +02:00
|
|
|
[dependencies]
|
2018-02-13 18:43:35 +03:00
|
|
|
rand = "0.4"
|
2020-04-23 13:24:27 +03:00
|
|
|
bit-vec = "0.6.1"
|
2017-08-07 22:36:52 +03:00
|
|
|
futures = "0.1"
|
2019-03-24 07:47:47 +03:00
|
|
|
cfg-if = "0.1.7"
|
2019-03-04 23:04:39 +03:00
|
|
|
|
2019-09-07 18:35:10 +03:00
|
|
|
pairing = {package = "pairing_ce", path = "../pairing" }
|
|
|
|
#pairing = {package = "pairing_ce", version = "0.18.0" }
|
2018-03-05 03:49:05 +03:00
|
|
|
byteorder = "1"
|
2017-08-07 22:36:52 +03:00
|
|
|
|
2019-03-04 23:04:39 +03:00
|
|
|
futures-cpupool = {version = "0.1", optional = true}
|
|
|
|
num_cpus = {version = "1", optional = true}
|
|
|
|
crossbeam = {version = "0.7.1", optional = true}
|
2019-07-13 21:54:06 +03:00
|
|
|
|
2019-07-13 17:39:38 +03:00
|
|
|
prefetch = {version = "0.2", optional = true}
|
2019-03-04 23:04:39 +03:00
|
|
|
|
2019-03-24 09:28:54 +03:00
|
|
|
web-sys = {version = "0.3.17", optional = true, features = ["console", "Performance", "Window"]}
|
2019-02-05 17:23:26 +03:00
|
|
|
|
2020-04-23 13:24:27 +03:00
|
|
|
tiny-keccak = {version = "2.0.2", optional = true}
|
2019-03-31 09:31:34 +03:00
|
|
|
blake2-rfc = {version = "0.2.18", optional = true}
|
2019-02-05 17:23:26 +03:00
|
|
|
|
2017-08-07 22:36:52 +03:00
|
|
|
[features]
|
2019-07-13 16:58:25 +03:00
|
|
|
default = ["multicore"]
|
2019-07-13 17:39:38 +03:00
|
|
|
#default = ["multicore", "nightly"]
|
2019-03-24 09:28:54 +03:00
|
|
|
#default = ["wasm"]
|
2019-03-04 23:04:39 +03:00
|
|
|
multicore = ["futures-cpupool", "num_cpus", "crossbeam"]
|
2019-03-31 09:31:34 +03:00
|
|
|
sonic = ["tiny-keccak", "blake2-rfc"]
|
2019-03-04 23:04:39 +03:00
|
|
|
gm17 = []
|
2019-03-24 09:28:54 +03:00
|
|
|
wasm = ["web-sys"]
|
2019-07-13 17:39:38 +03:00
|
|
|
nightly = ["prefetch"]
|