|
[package]
|
|
name = "testudo"
|
|
version = "0.1.0"
|
|
authors = ["Protocol Labs <mara.mihali@protocol.ai>"]
|
|
edition = "2021"
|
|
description = "Spartan + Groth16 fast prover fast verifier SNARK"
|
|
readme = "README.md"
|
|
repository = "https://github.com/maramihali/Spartan"
|
|
license-file = "LICENSE"
|
|
keywords = ["SNARKs", "cryptography", "proofs"]
|
|
|
|
[dependencies]
|
|
merlin = "3.0.0"
|
|
digest = "0.8.1"
|
|
sha3 = "0.8.2"
|
|
rayon = { version = "1.3.0", optional = true }
|
|
itertools = "0.10.0"
|
|
colored = "2.0.0"
|
|
thiserror = "1.0"
|
|
json = "0.12.4"
|
|
ark-ff = { version = "^0.3.0", default-features = false }
|
|
ark-ec = { version = "^0.3.0", default-features = false }
|
|
ark-std = { version = "^0.3.0"}
|
|
ark-bls12-377 = { version = "^0.3.0", features = ["r1cs","curve"] }
|
|
ark-serialize = { version = "^0.3.0", features = ["derive"] }
|
|
ark-sponge = { version = "^0.3.0" , features = ["r1cs"] }
|
|
ark-crypto-primitives = { version = "^0.3.0", default-features = true }
|
|
ark-r1cs-std = { version = "^0.3.0", default-features = false }
|
|
ark-nonnative-field = { version = "0.3.0", default-features = false }
|
|
ark-relations = { version = "^0.3.0", default-features = false, optional = true }
|
|
ark-groth16 = { version = "^0.3.0", features = ["r1cs"] }
|
|
ark-bw6-761 = { version = "^0.3.0" }
|
|
ark-poly-commit = { version = "^0.3.0" }
|
|
ark-poly = {version = "^0.3.0"}
|
|
|
|
lazy_static = "1.4.0"
|
|
rand = { version = "0.8", features = [ "std", "std_rng" ] }
|
|
|
|
tracing = { version = "0.1", default-features = false, features = [ "attributes" ] }
|
|
tracing-subscriber = { version = "0.2" }
|
|
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
csv = "1.1.5"
|
|
criterion = "0.3.6"
|
|
|
|
[lib]
|
|
name = "libspartan"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "snark"
|
|
path = "profiler/snark.rs"
|
|
|
|
[[bin]]
|
|
name = "nizk"
|
|
path = "profiler/nizk.rs"
|
|
|
|
[[bench]]
|
|
name = "snark"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "nizk"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "r1cs"
|
|
harness = false
|
|
debug = true
|
|
|
|
[features]
|
|
multicore = ["rayon"]
|
|
profile = []
|
|
default = ["asm","parallel", "std", "multicore"]
|
|
asm = ["ark-ff/asm"]
|
|
parallel = [ "std", "ark-ff/parallel", "ark-std/parallel", "ark-ec/parallel", "ark-poly/parallel", "rayon"]
|
|
std = ["ark-ff/std", "ark-ec/std", "ark-std/std", "ark-relations/std", "ark-serialize/std"]
|
|
|
|
[patch.crates-io]
|
|
ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std/", rev = "a2a5ac491ae005ba2afd03fd21b7d3160d794a83"}
|
|
ark-poly-commit = {git = "https://github.com/maramihali/poly-commit"}
|
|
|