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.

104 lines
2.4 KiB

4 years ago
3 years ago
4 years ago
3 years ago
4 years ago
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. bencher = { version = "0.1.5" }
  26. [dev-dependencies]
  27. ark-ec = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  28. ark-ff = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  29. ark-serialize = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  30. ark-mnt4-298 = { path = "../mnt4_298" }
  31. ark-mnt6-298 = { path = "../mnt6_298" }
  32. ark-mnt4-753 = { path = "../mnt4_753" }
  33. ark-mnt6-753 = { path = "../mnt6_753" }
  34. ark-bn254 = { path = "../bn254" }
  35. ark-bls12-377 = { path = "../bls12_377" }
  36. ark-bls12-381 = { path = "../bls12_381" }
  37. ark-ed-on-bls12-381 = { path = "../ed_on_bls12_381" }
  38. ark-bw6-761 = { path = "../bw6_761" }
  39. ark-cp6-782 = { path = "../cp6_782" }
  40. rand = "0.7"
  41. rand_xorshift = { version = "0.2" }
  42. [features]
  43. asm = [ "ark-ff/asm"]
  44. parallel = [ "ark-ff/parallel", "ark-ec/parallel", ]
  45. n_fold = []
  46. [build-dependencies]
  47. rustc_version = "0.2"
  48. [[bench]]
  49. name = "bls12_377"
  50. path = "benches/bls12_377.rs"
  51. harness = false
  52. [[bench]]
  53. name = "bls12_381"
  54. path = "benches/bls12_381.rs"
  55. harness = false
  56. [[bench]]
  57. name = "bn254"
  58. path = "benches/bn254.rs"
  59. harness = false
  60. [[bench]]
  61. name = "bw6_761"
  62. path = "benches/bw6_761.rs"
  63. harness = false
  64. [[bench]]
  65. name = "cp6_782"
  66. path = "benches/cp6_782.rs"
  67. harness = false
  68. [[bench]]
  69. name = "ed_on_bls12_381"
  70. path = "benches/ed_on_bls12_381.rs"
  71. harness = false
  72. [[bench]]
  73. name = "mnt4_298"
  74. path = "benches/mnt4_298.rs"
  75. harness = false
  76. [[bench]]
  77. name = "mnt6_298"
  78. path = "benches/mnt6_298.rs"
  79. harness = false
  80. [[bench]]
  81. name = "mnt4_753"
  82. path = "benches/mnt4_753.rs"
  83. harness = false
  84. [[bench]]
  85. name = "mnt6_753"
  86. path = "benches/mnt6_753.rs"
  87. harness = false