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.

50 lines
1.6 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 = "2", features = ["use_core"] }
  26. [dev-dependencies]
  27. rand = { version = "0.7", default-features = false }
  28. rand_xorshift = { version = "0.2" }
  29. # Currently this means that all downstream users of `r1cs-std` will be using
  30. # `algebra` with the `bls12_381` feature.
  31. algebra = { path = "../algebra", default-features = false, features = [ "bls12_381" ] }
  32. [features]
  33. default = ["std"]
  34. full = [ "bls12_377", "jubjub", "edwards_bls12", "edwards_sw6", "mnt4_298", "mnt4_753", "mnt6_298", "mnt6_753" ]
  35. bls12_377 = [ "algebra/bls12_377" ]
  36. jubjub = [ "algebra/jubjub" ]
  37. edwards_bls12 = [ "algebra/edwards_bls12" ]
  38. edwards_sw6 = [ "algebra/edwards_sw6" ]
  39. mnt4_298 = [ "algebra/mnt4_298" ]
  40. mnt4_753 = [ "algebra/mnt4_753" ]
  41. mnt6_298 = [ "algebra/mnt6_298" ]
  42. mnt6_753 = [ "algebra/mnt6_753" ]
  43. std = [ "algebra/std" ]
  44. parallel = [ "std", "algebra/parallel" ]