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.

32 lines
1.5 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. [package]
  2. name = "ark-ed-on-bn254"
  3. version = "0.1.0"
  4. authors = [ "arkworks contributors" ]
  5. description = "A Twisted Edwards curve defined over the scalar field of the BN254 curve"
  6. homepage = "https://arkworks.rs"
  7. repository = "https://github.com/arkworks-rs/algebra"
  8. documentation = "https://docs.rs/ark-ed-on-bn254/"
  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-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std", default-features = false, optional = true }
  19. ark-bn254 = { path = "../bn254", default-features = false, features = [ "scalar_field" ] }
  20. [dev-dependencies]
  21. ark-relations = { git = "https://github.com/arkworks-rs/snark", default-features = false }
  22. ark-serialize = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
  23. ark-curve-tests = { path = "../curve-tests", default-features = false }
  24. ark-curve-constraint-tests = { path = "../curve-constraint-tests", default-features = false }
  25. rand = { version = "0.7", default-features = false }
  26. rand_xorshift = "0.2"
  27. [features]
  28. default = []
  29. std = [ "ark-std/std", "ark-ff/std", "ark-ec/std", "ark-bn254/std" ]
  30. r1cs = ["ark-r1cs-std"]