You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
836 B

5 years ago
  1. [package]
  2. name = "r1cs-std"
  3. version = "0.1.0"
  4. authors = [
  5. "Sean Bowe",
  6. "Alessandro Chiesa",
  7. "Matthew Green",
  8. "Ian Miers",
  9. "Pratyush Mishra",
  10. "Howard Wu"
  11. ]
  12. description = "A standard library for constraint system gadgets"
  13. homepage = "https://libzexe.org"
  14. repository = "https://github.com/scipr/zexe"
  15. documentation = "https://docs.rs/r1cs-std/"
  16. keywords = ["zero knowledge", "cryptography", "zkSNARK", "SNARK"]
  17. categories = ["cryptography"]
  18. include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
  19. license = "MIT/Apache-2.0"
  20. edition = "2018"
  21. ################################# Dependencies ################################
  22. [dependencies]
  23. algebra = { path = "../algebra" }
  24. r1cs-core = { path = "../r1cs-core" }
  25. derivative = "1"
  26. radix_trie = "0.1"
  27. [dev-dependencies]
  28. rand = { version = "0.7" }