2017-10-30 03:58:34 +03:00
|
|
|
[package]
|
|
|
|
name = "powersoftau"
|
2019-02-27 19:10:19 +03:00
|
|
|
version = "0.2.0"
|
2019-01-09 21:30:42 +03:00
|
|
|
authors = ["Sean Bowe", "Alex Vlasov"]
|
2017-10-30 03:58:34 +03:00
|
|
|
license = "MIT/Apache-2.0"
|
2019-01-09 21:30:42 +03:00
|
|
|
edition = "2018"
|
2017-10-30 03:58:34 +03:00
|
|
|
|
|
|
|
description = "Communal zk-SNARK MPC for Public Parameters"
|
|
|
|
documentation = "https://docs.rs/powersoftau/"
|
2019-02-27 19:10:19 +03:00
|
|
|
homepage = "https://github.com/matter-labs/powersoftau"
|
|
|
|
repository = "https://github.com/matter-labs/powersoftau"
|
2017-10-30 03:58:34 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2018-04-04 03:59:39 +03:00
|
|
|
rand = "0.4"
|
2020-04-23 12:45:54 +03:00
|
|
|
crossbeam = "0.7.3"
|
2017-10-30 03:58:34 +03:00
|
|
|
num_cpus = "1.7.0"
|
2020-04-23 12:45:54 +03:00
|
|
|
blake2 = "0.8.1"
|
|
|
|
# `blake2:0.8.1` uses `crypto-mac:0.7.0` which uses `generic-array:0.12.3` version. So we cannot update `generic-array` to the latest version.
|
|
|
|
generic-array = "0.12.3"
|
|
|
|
typenum = "1.12.0"
|
2017-10-30 03:58:34 +03:00
|
|
|
byteorder = "1.1.0"
|
2020-04-23 12:45:54 +03:00
|
|
|
hex-literal = "0.2.1"
|
2018-03-18 21:39:08 +03:00
|
|
|
rust-crypto = "0.2"
|
2020-01-08 15:39:29 +03:00
|
|
|
exitcode = "1.1.2"
|
2020-04-13 19:25:55 +03:00
|
|
|
hex = "0.4.0"
|
2019-01-09 21:30:42 +03:00
|
|
|
|
|
|
|
memmap = "0.7.0"
|
2020-04-23 12:45:54 +03:00
|
|
|
itertools = "0.9.0"
|
2019-01-09 21:30:42 +03:00
|
|
|
|
2019-09-04 13:15:17 +03:00
|
|
|
bellman_ce = { path = "../bellman" }
|
2020-02-13 12:04:29 +03:00
|
|
|
log = "0.4.8"
|