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.

29 lines
1.2 KiB

4 years ago
  1. [package]
  2. name = "ark-bw6-761"
  3. version = "0.1.0"
  4. authors = [ "arkworks contributors" ]
  5. description = "The BW6-761 pairing-friendly elliptic curve"
  6. homepage = "https://arworks.rs"
  7. repository = "https://github.com/arkworks/algebra"
  8. documentation = "https://docs.rs/ark-bw6-761/"
  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 = "2018"
  14. [dependencies]
  15. ark-ff = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  16. ark-ec = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  17. ark-std = { git = "https://github.com/arkworks-rs/utils", default-features = false }
  18. ark-bls12-377 = { path = "../bls12_377", default-features = false, features = [ "base_field" ] }
  19. [dev-dependencies]
  20. ark-serialize = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  21. ark-curve-tests = { path = "../curve-tests", default-features = false }
  22. rand = { version = "0.7", default-features = false }
  23. rand_xorshift = "0.2"
  24. [features]
  25. default = []
  26. std = [ "ark-std/std", "ark-ff/std", "ark-ec/std", "ark-bls12-377/std" ]