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.

35 lines
785 B

3 years ago
3 years ago
  1. [package]
  2. name = "babyjubjub-rs"
  3. version = "0.0.11"
  4. authors = ["arnaucube <root@arnaucube.com>"]
  5. edition = "2021"
  6. license = "Apache-2.0"
  7. description = "BabyJubJub elliptic curve implementation"
  8. repository = "https://github.com/arnaucube/babyjubjub-rs"
  9. readme = "README.md"
  10. [dependencies]
  11. ff = {package="ff_ce" , version= "0.11", features = ["derive"]}
  12. rand = "0.8"
  13. num = "0.4"
  14. num-bigint = {version = "0.4", features = ["rand"]}
  15. num-traits = "0.2.8"
  16. blake-hash = {version="0.4.0", optional=true}
  17. blake = {version="2.0.1", optional=true}
  18. generic-array = "0.14"
  19. poseidon-rs = "0.0.8"
  20. arrayref = "0.3.5"
  21. lazy_static = "1.4.0"
  22. [dev-dependencies]
  23. criterion = "0.3"
  24. hex = "0.4"
  25. [[bench]]
  26. name = "bench_babyjubjub"
  27. harness = false
  28. [features]
  29. default = ["blake-hash"]
  30. aarch64 = ["blake"]