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.

40 lines
1.4 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-bls12-377"
  3. version = "0.4.0-alpha.1"
  4. authors = [ "arkworks contributors" ]
  5. description = "The BLS12-377 pairing-friendly elliptic curve"
  6. homepage = "https://arkworks.rs"
  7. repository = "https://github.com/arkworks-rs/curves"
  8. documentation = "https://docs.rs/ark-bls12-377/"
  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-r1cs-std = { version="^0.3.0", default-features = false, optional = true }
  18. ark-std = { version = "0.4.0-alpha", default-features = false }
  19. [dev-dependencies]
  20. ark-relations = { version="^0.3.0", default-features = false }
  21. ark-serialize = { version = "0.4.0-alpha", default-features = false }
  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. ark-curve-constraint-tests = { path = "../curve-constraint-tests", default-features = false }
  25. [features]
  26. default = [ "curve" ]
  27. std = [ "ark-std/std", "ark-ff/std", "ark-ec/std" ]
  28. curve = [ "scalar_field", "base_field" ]
  29. scalar_field = []
  30. base_field = []
  31. r1cs = [ "base_field", "ark-r1cs-std" ]
  32. [[bench]]
  33. name = "bls12_377"
  34. path = "benches/bls12_377.rs"
  35. harness = false