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

  1. [package]
  2. name = "ark-ed-on-bls12-381-bandersnatch"
  3. version = "0.3.0"
  4. authors = [ "zhenfei zhang", "arkworks contributors" ]
  5. description = "Bandersnatch: a curve defined over the scalar field of the BLS12-381 curve"
  6. repository = "https://github.com/zhenfeizhang/bandersnatch-rust"
  7. keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
  8. categories = ["cryptography"]
  9. include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
  10. license = "MIT/Apache-2.0"
  11. edition = "2021"
  12. [dependencies]
  13. ark-ff = { version = "^0.3.0", default-features = false }
  14. ark-ec = { version = "^0.3.0", default-features = false }
  15. ark-std = { version = "^0.3.0", default-features = false }
  16. ark-r1cs-std = { version = "^0.3.0", default-features = false, optional = true }
  17. ark-bls12-381 = { version = "^0.3.0", path = "../bls12_381", default-features = false, features = [ "scalar_field" ] }
  18. [dev-dependencies]
  19. ark-relations = { version = "^0.3.0", default-features = false }
  20. ark-serialize = { version = "^0.3.0", default-features = false }
  21. ark-algebra-test-templates = { version = "^0.3.0", default-features = false }
  22. ark-curve-constraint-tests = { path = "../curve-constraint-tests", default-features = false }
  23. [features]
  24. default = []
  25. std = [
  26. "ark-std/std",
  27. "ark-ff/std",
  28. "ark-ec/std",
  29. "ark-bls12-381/std"
  30. ]
  31. r1cs = ["ark-r1cs-std"]