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.

36 lines
855 B

3 years ago
  1. [package]
  2. name = "babyjubjub-rs"
  3. version = "0.0.8"
  4. authors = ["arnaucube <root@arnaucube.com>"]
  5. edition = "2018"
  6. license = "GPL-3.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.4"
  13. rand6 = {package="rand", version="0.6.5"}
  14. num = "0.2.0"
  15. num-bigint = {version = "0.2.2", features = ["rand"]}
  16. num-traits = "0.2.8"
  17. blake-hash = {version="0.4.0", optional=true}
  18. blake = {version="2.0.1", optional=true}
  19. generic-array = "0.13.2"
  20. tiny-keccak = "1.5"
  21. rustc-hex = "1.0.0"
  22. poseidon-rs = "0.0.8"
  23. arrayref = "0.3.5"
  24. lazy_static = "1.4.0"
  25. [dev-dependencies]
  26. criterion = "0.3"
  27. [[bench]]
  28. name = "bench_babyjubjub"
  29. harness = false
  30. [features]
  31. default = ["blake-hash"]
  32. aarch64 = ["blake"]