phase2-bn254/Cargo.toml

33 lines
879 B
TOML
Raw Normal View History

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"
2018-12-08 00:31:26 +03:00
documentation = "https://github.com/matterinc/bellman"
homepage = "https://github.com/matterinc/bellman"
license = "MIT/Apache-2.0"
2015-12-25 09:37:52 +02:00
name = "bellman"
2018-12-08 00:31:26 +03:00
repository = "https://github.com/matterinc/bellman"
version = "0.1.3"
[lib]
crate-type = ["cdylib", "lib", "staticlib"]
2015-12-24 11:58:38 +02:00
[dependencies]
2018-02-13 18:43:35 +03:00
rand = "0.4"
bit-vec = "0.4.4"
futures = "0.1"
futures-cpupool = "0.1"
2018-02-14 22:31:43 +03:00
num_cpus = "1"
crossbeam = "0.7.1"
2018-12-08 00:41:21 +03:00
pairing = { git = 'https://github.com/matterinc/pairing' }
byteorder = "1"
2019-01-17 11:38:54 +03:00
ff = { git = 'https://github.com/matterinc/ff', features = ["derive"] }
tiny-keccak = "1.4.2"
[dependencies.blake2-rfc]
git = "https://github.com/gtank/blake2-rfc"
rev = "7a5b5fc99ae483a0043db7547fb79a6fa44b88a9"
[features]
default = []