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.

25 lines
1.1 KiB

1 year ago
  1. [package]
  2. name = "ark-curve-constraint-tests"
  3. version = "0.4.0-alpha.2"
  4. authors = [ "arkworks contributors" ]
  5. description = "A library for testing constraints for finite fields, elliptic curves, and pairings"
  6. homepage = "https://arkworks.rs"
  7. repository = "https://github.com/arkworks-rs/curves"
  8. documentation = "https://docs.rs/ark-curve-constraint-tests/"
  9. keywords = ["cryptography", "finite-fields", "elliptic-curves", "r1cs" ]
  10. categories = ["cryptography"]
  11. include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
  12. license = "MIT/Apache-2.0"
  13. edition = "2021"
  14. [dependencies]
  15. ark-std = { version = "0.4.0-alpha", default-features = false }
  16. ark-serialize = { version = "0.4.0-alpha", default-features = false }
  17. ark-ff = { version = "0.4.0-alpha", default-features = false }
  18. ark-relations = { version = "0.4.0-alpha", default-features = false }
  19. ark-r1cs-std = { version = "0.4.0-alpha", default-features = false }
  20. ark-ec = { version = "0.4.0-alpha", default-features = false }
  21. [features]
  22. default = []
  23. std = [ "ark-std/std", "ark-ff/std", "ark-serialize/std", "ark-ec/std", "ark-relations/std", "ark-r1cs-std/std" ]