[dependencies.group]
version = "0.13"
[dependencies.rand]
version = "0.8.5"
[dependencies.sigma-compiler-derive]
version = "0.1.0"
[dependencies.sigma-proofs]
version = "0.1.0-sigma"
[dependencies.subtle]
version = "2.6"
[dev-dependencies.curve25519-dalek]
features = ["group", "rand_core", "digest"]
version = "4"
[dev-dependencies.sha2]
version = "0.10"
[lib]
name = "sigma_compiler"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Crate for automatically generating code for sigma zero-knowledge proof protocols of more complex statements than are supported by the sigma-proofs crate. The statements given to this crate are compiled into statements about linear combinations of points, and transformed into the sigma-proofs API."
edition = "2021"
license = "MIT"
name = "sigma-compiler"
readme = "README.md"
repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/sigma-compiler"
version = "0.1.0"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "basic_sum"
path = "tests/basic_sum.rs"
[[test]]
name = "basic_vec"
path = "tests/basic_vec.rs"
[[test]]
name = "disj"
path = "tests/disj.rs"
[[test]]
name = "disj_vec"
path = "tests/disj_vec.rs"
[[test]]
name = "dl"
path = "tests/dl.rs"
[[test]]
name = "dot_product"
path = "tests/dot_product.rs"
[[test]]
name = "emptystatement"
path = "tests/emptystatement.rs"
[[test]]
name = "left_expr"
path = "tests/left_expr.rs"
[[test]]
name = "notequals"
path = "tests/notequals.rs"
[[test]]
name = "pubscalars"
path = "tests/pubscalars.rs"
[[test]]
name = "pubscalars_or"
path = "tests/pubscalars_or.rs"
[[test]]
name = "pubscalars_or_and"
path = "tests/pubscalars_or_and.rs"
[[test]]
name = "pubscalars_or_and_vec"
path = "tests/pubscalars_or_and_vec.rs"
[[test]]
name = "pubscalars_or_vec"
path = "tests/pubscalars_or_vec.rs"
[[test]]
name = "pubscalars_vec"
path = "tests/pubscalars_vec.rs"
[[test]]
name = "pubstatements"
path = "tests/pubstatements.rs"
[[test]]
name = "pubstatements_vec"
path = "tests/pubstatements_vec.rs"
[[test]]
name = "range"
path = "tests/range.rs"
[[test]]
name = "simple_or"
path = "tests/simple_or.rs"
[[test]]
name = "substitution_or"
path = "tests/substitution_or.rs"
[[test]]
name = "substitution_vec"
path = "tests/substitution_vec.rs"
[[test]]
name = "subtract"
path = "tests/subtract.rs"
[[test]]
name = "subtract_vec"
path = "tests/subtract_vec.rs"
[[test]]
name = "two_true"
path = "tests/two_true.rs"