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.

102 lines
2.3 KiB

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