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

4 years ago
  1. [package]
  2. name = "ark-curve-benches"
  3. version = "0.1.1-alpha.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 benchmark library for finite fields and elliptic curves"
  13. homepage = "https://arkworks.rs"
  14. repository = "https://github.com/arkworks-rs/algebra"
  15. documentation = "https://docs.rs/algebra/"
  16. keywords = ["cryptography", "finite fields", "elliptic curves", "pairing"]
  17. categories = ["cryptography"]
  18. include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
  19. license = "MIT/Apache-2.0"
  20. edition = "2018"
  21. publish = false
  22. build = "build.rs"
  23. ################################# Dependencies ################################
  24. [dependencies]
  25. ark-ec = { git = "https://github.com/arkworks-rs/algebra" }
  26. ark-ff = { git = "https://github.com/arkworks-rs/algebra" }
  27. ark-serialize = { git = "https://github.com/arkworks-rs/algebra" }
  28. ark-mnt4-298 = { path = "../mnt4_298", optional = true }
  29. ark-mnt6-298 = { path = "../mnt6_298", optional = true }
  30. ark-mnt4-753 = { path = "../mnt4_753", optional = true }
  31. ark-mnt6-753 = { path = "../mnt6_753", optional = true }
  32. ark-bn254 = { path = "../bn254", default-features = false, optional = true }
  33. ark-bls12-377 = { path = "../bls12_377", optional = true }
  34. ark-bls12-381 = { path = "../bls12_381", optional = true }
  35. ark-bw6-761 = { path = "../bw6_761", optional = true }
  36. ark-cp6-782 = { path = "../cp6_782", optional = true }
  37. rand = "0.7"
  38. rand_xorshift = { version = "0.2" }
  39. paste = "1.0"
  40. [features]
  41. asm = [ "ark-ff/asm"]
  42. n_fold = []
  43. [build-dependencies]
  44. rustc_version = "0.2"