-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
35 lines (32 loc) · 1.53 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "plonkit"
version = "0.1.6"
authors = [ "Roman Semenov <[email protected]>", "Zhuo Zhang <[email protected]>", "Haoyu LIN <[email protected]>" ]
description = "Library for working with circom circuits in plonk proof system"
homepage = "https://github.com/fluidex/plonkit"
license = "MIT"
repository = "https://github.com/fluidex/plonkit"
edition = "2021"
[[bin]]
name = "plonkit"
path = "src/bin/main.rs"
[dependencies]
anyhow = "1.0.34"
# bellman_ce = { git = "https://github.com/matter-labs/bellman", branch = "beta", default-features = false, features = [ "plonk" ] } # active features depend on build type
bellman_vk_codegen = { git = "https://github.com/fluidex/solidity_plonk_verifier.git" }
byteorder = "1"
clap = { package = "clap-v3", version = "3.0.0-beta.1" } # todo: replace with official v3 when it's released to crates.io
env_logger = "0.8.2"
franklin-crypto = { git = "https://github.com/matter-labs/franklin-crypto", branch = "beta", features = [ "multicore", "plonk" ] }
hex-literal = "0.2.1"
itertools = "0.8.1"
log = "0.4.11"
num-bigint = "0.3.3"
num-traits = "0.2.8"
rand = "0.4"
# recursive_aggregation_circuit = { package = "recursive_aggregation_circuit", version = "1.0.0", git = "https://github.com/matter-labs/recursive_aggregation_circuit.git", branch = "master" }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
recurisive_vk_codegen = { package = "solidity_recursive_plonk_verifier", git = "https://github.com/fluidex/solidity_recursive_plonk_verifier.git" }
[features]
default = [ ]