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.

34 lines
1.3 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. [package]
  2. name = "ark-cp6-782"
  3. version = "0.4.0-alpha.1"
  4. authors = [ "arkworks contributors" ]
  5. description = "The CP6-782 pairing-friendly elliptic curve"
  6. homepage = "https://arkworks.rs"
  7. repository = "https://github.com/arkworks-rs/curves"
  8. documentation = "https://docs.rs/ark-cp6-782/"
  9. keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
  10. categories = ["cryptography"]
  11. include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
  12. license = "MIT/Apache-2.0"
  13. edition = "2021"
  14. [dependencies]
  15. ark-ff = { version = "0.4.0-alpha", default-features = false }
  16. ark-ec = { version = "0.4.0-alpha", default-features = false }
  17. ark-std = { version = "0.4.0-alpha", default-features = false }
  18. ark-bls12-377 = { version = "0.4.0-alpha", path = "../bls12_377", default-features = false, features = [ "base_field" ] }
  19. itertools = { version = "0.10", default-features = false }
  20. ark-serialize = { version = "0.4.0-alpha", default-features = false }
  21. [dev-dependencies]
  22. ark-algebra-test-templates = { version = "0.4.0-alpha", default-features = false }
  23. ark-algebra-bench-templates = { version = "0.4.0-alpha", default-features = false }
  24. [features]
  25. default = []
  26. std = [ "ark-std/std", "ark-ff/std", "ark-ec/std", "ark-bls12-377/std" ]
  27. [[bench]]
  28. name = "cp6_782"
  29. path = "benches/cp6_782.rs"
  30. harness = false