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.

65 lines
932 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. [workspace]
  2. members = [
  3. "curve-constraint-tests",
  4. "bls12_377",
  5. "ed_on_bls12_377",
  6. "bw6_761",
  7. "ed_on_bw6_761",
  8. "cp6_782",
  9. "ed_on_cp6_782",
  10. "bls12_381",
  11. "ed_on_bls12_381",
  12. "ed_on_bls12_381_bandersnatch",
  13. "bn254",
  14. "ed_on_bn254",
  15. "mnt4_298",
  16. "mnt6_298",
  17. "ed_on_mnt4_298",
  18. "mnt4_753",
  19. "mnt6_753",
  20. "ed_on_mnt4_753",
  21. "pallas",
  22. "vesta",
  23. "curve25519",
  24. "ed25519",
  25. ]
  26. resolver = "2"
  27. [profile.release]
  28. opt-level = 3
  29. lto = "thin"
  30. incremental = true
  31. panic = 'abort'
  32. [profile.bench]
  33. opt-level = 3
  34. debug = false
  35. rpath = false
  36. lto = "thin"
  37. incremental = true
  38. debug-assertions = false
  39. [profile.dev]
  40. opt-level = 0
  41. panic = 'abort'
  42. [profile.test]
  43. opt-level = 3
  44. lto = "thin"
  45. incremental = true
  46. debug-assertions = true
  47. debug = true
  48. # To be removed in the new release.
  49. [patch.crates-io]
  50. ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std" }