33 lines
879 B
TOML
33 lines
879 B
TOML
[package]
|
|
authors = ["Sean Bowe <ewillbefull@gmail.com>", "Alex Vlasov <alex.m.vlasov@gmail.com>", "Alex Gluchowski <alex@gluchowski.net"]
|
|
description = "zk-SNARK library"
|
|
documentation = "https://github.com/matterinc/bellman"
|
|
homepage = "https://github.com/matterinc/bellman"
|
|
license = "MIT/Apache-2.0"
|
|
name = "bellman"
|
|
repository = "https://github.com/matterinc/bellman"
|
|
version = "0.1.3"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib", "staticlib"]
|
|
|
|
[dependencies]
|
|
rand = "0.4"
|
|
bit-vec = "0.4.4"
|
|
futures = "0.1"
|
|
futures-cpupool = "0.1"
|
|
num_cpus = "1"
|
|
crossbeam = "0.7.1"
|
|
pairing = { git = 'https://github.com/matterinc/pairing' }
|
|
byteorder = "1"
|
|
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 = []
|