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.

32 lines
1.2 KiB

4 years ago
4 years ago
  1. [package]
  2. name = "ark-curve-tests"
  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. "arkworks contributors"
  12. ]
  13. description = "A library for tests for finite fields, elliptic curves, and pairings"
  14. homepage = "https://arkworks.rs"
  15. repository = "https://github.com/arkworks-rs/algebra"
  16. documentation = "https://docs.rs/ark-curve-tests/"
  17. keywords = ["cryptography", "finite fields", "elliptic curves" ]
  18. categories = ["cryptography"]
  19. include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
  20. license = "MIT/Apache-2.0"
  21. edition = "2018"
  22. [dependencies]
  23. ark-std = { git = "https://github.com/arkworks-rs/utils", default-features = false }
  24. ark-serialize = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  25. ark-ff = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  26. ark-ec = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  27. rand = { version = "0.7", default-features = false}
  28. rand_xorshift = { version = "0.2", default-features = false}
  29. [features]
  30. default = []
  31. std = [ "ark-std/std", "ark-ff/std", "ark-serialize/std", "ark-ec/std" ]