|
|
[package] name = "r1cs-std" version = "0.1.0" authors = [ "Sean Bowe", "Alessandro Chiesa", "Matthew Green", "Ian Miers", "Pratyush Mishra", "Howard Wu" ] description = "A standard library for constraint system gadgets" homepage = "https://libzexe.org" repository = "https://github.com/scipr/zexe" documentation = "https://docs.rs/r1cs-std/" keywords = ["zero knowledge", "cryptography", "zkSNARK", "SNARK"] categories = ["cryptography"] include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] license = "MIT/Apache-2.0" edition = "2018"
################################# Dependencies ################################
[dependencies] algebra = { path = "../algebra", default-features = false } r1cs-core = { path = "../r1cs-core", default-features = false } derivative = { version = "1", features = ["use_core"] }
[dev-dependencies] rand = { version = "0.7", default-features = false } rand_xorshift = { version = "0.2" }
[features] default = ["std"] std = ["algebra/std", "r1cs-core/std"]
|