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.

35 lines
1.0 KiB

  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", default-features = false }
  24. r1cs-core = { path = "../r1cs-core", default-features = false }
  25. derivative = { version = "1", features = ["use_core"] }
  26. [dev-dependencies]
  27. rand = { version = "0.7", default-features = false }
  28. rand_xorshift = { version = "0.2" }
  29. [features]
  30. default = ["std"]
  31. std = ["algebra/std", "r1cs-core/std"]