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.

54 lines
1.8 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. This is because of a cargo bug.
  31. algebra = { path = "../algebra", default-features = false, features = [ "bls12_381" ] }
  32. [features]
  33. default = ["std"]
  34. full = [
  35. "bls12_377", "ed_on_bls12_381", "ed_on_bls12_377", "ed_on_cp6_782",
  36. "ed_on_bw6_761", "mnt4_298", "mnt4_753", "mnt6_298", "mnt6_753"
  37. ]
  38. bls12_377 = [ "algebra/bls12_377" ]
  39. ed_on_bls12_381 = [ "algebra/ed_on_bls12_381" ]
  40. ed_on_bls12_377 = [ "algebra/ed_on_bls12_377" ]
  41. ed_on_cp6_782 = [ "algebra/ed_on_cp6_782" ]
  42. ed_on_bw6_761 = [ "algebra/ed_on_bw6_761", "algebra/ed_on_cp6_782" ]
  43. mnt4_298 = [ "algebra/mnt4_298" ]
  44. mnt4_753 = [ "algebra/mnt4_753" ]
  45. mnt6_298 = [ "algebra/mnt6_298" ]
  46. mnt6_753 = [ "algebra/mnt6_753" ]
  47. std = [ "algebra/std" ]
  48. parallel = [ "std", "algebra/parallel" ]