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.

115 lines
2.6 KiB

4 years ago
4 years ago
4 years ago
4 years ago
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.3.0"
  4. authors = [
  5. "Sean Bowe",
  6. "Alessandro Chiesa",
  7. "Matthew Green",
  8. "Ian Miers",
  9. "Pratyush Mishra",
  10. "Howard Wu",
  11. "Daira Hopwood"
  12. ]
  13. description = "A benchmark library for finite fields and elliptic curves"
  14. homepage = "https://arkworks.rs"
  15. repository = "https://github.com/arkworks-rs/curves"
  16. documentation = "https://docs.rs/algebra/"
  17. keywords = ["cryptography", "finite-fields", "elliptic-curves", "pairing"]
  18. categories = ["cryptography"]
  19. include = ["Cargo.toml", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
  20. license = "MIT/Apache-2.0"
  21. edition = "2021"
  22. publish = false
  23. ################################# Dependencies ################################
  24. [dependencies]
  25. bencher = { version = "0.1.5" }
  26. [dev-dependencies]
  27. ark-std = { version = "^0.3.0", default-features = false }
  28. ark-ec = { version = "^0.3.0", default-features = false }
  29. ark-ff = { version = "^0.3.0", default-features = false }
  30. ark-serialize = { version = "^0.3.0", default-features = false }
  31. ark-algebra-bench-templates = { version = "^0.3.0", default-features = false }
  32. ark-mnt4-298 = { path = "../mnt4_298" }
  33. ark-mnt6-298 = { path = "../mnt6_298" }
  34. ark-mnt4-753 = { path = "../mnt4_753" }
  35. ark-mnt6-753 = { path = "../mnt6_753" }
  36. ark-bn254 = { path = "../bn254" }
  37. ark-bls12-377 = { path = "../bls12_377" }
  38. ark-bls12-381 = { path = "../bls12_381" }
  39. ark-ed-on-bls12-381 = { path = "../ed_on_bls12_381" }
  40. ark-bw6-761 = { path = "../bw6_761" }
  41. ark-cp6-782 = { path = "../cp6_782" }
  42. ark-pallas = { path = "../pallas" }
  43. ark-vesta = { path = "../vesta" }
  44. [features]
  45. asm = [ "ark-ff/asm"]
  46. parallel = [ "ark-ff/parallel", "ark-ec/parallel" ]
  47. n_fold = []
  48. [build-dependencies]
  49. rustc_version = "0.2"
  50. [[bench]]
  51. name = "bls12_377"
  52. path = "benches/bls12_377.rs"
  53. harness = false
  54. [[bench]]
  55. name = "bls12_381"
  56. path = "benches/bls12_381.rs"
  57. harness = false
  58. [[bench]]
  59. name = "bn254"
  60. path = "benches/bn254.rs"
  61. harness = false
  62. [[bench]]
  63. name = "bw6_761"
  64. path = "benches/bw6_761.rs"
  65. harness = false
  66. [[bench]]
  67. name = "cp6_782"
  68. path = "benches/cp6_782.rs"
  69. harness = false
  70. [[bench]]
  71. name = "ed_on_bls12_381"
  72. path = "benches/ed_on_bls12_381.rs"
  73. harness = false
  74. [[bench]]
  75. name = "mnt4_298"
  76. path = "benches/mnt4_298.rs"
  77. harness = false
  78. [[bench]]
  79. name = "mnt6_298"
  80. path = "benches/mnt6_298.rs"
  81. harness = false
  82. [[bench]]
  83. name = "mnt4_753"
  84. path = "benches/mnt4_753.rs"
  85. harness = false
  86. [[bench]]
  87. name = "mnt6_753"
  88. path = "benches/mnt6_753.rs"
  89. harness = false
  90. [[bench]]
  91. name = "pallas"
  92. path = "benches/pallas.rs"
  93. harness = false
  94. [[bench]]
  95. name = "vesta"
  96. path = "benches/vesta.rs"
  97. harness = false