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
733 B

3 years ago
  1. [package]
  2. name = "babyjubjub-rs"
  3. version = "0.0.6"
  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 = "0.4.0"
  18. generic-array = "0.13.2"
  19. tiny-keccak = "1.5"
  20. rustc-hex = "1.0.0"
  21. poseidon-rs = "0.0.5"
  22. arrayref = "0.3.5"
  23. lazy_static = "1.4.0"
  24. [dev-dependencies]
  25. criterion = "0.3"
  26. [[bench]]
  27. name = "bench_babyjubjub"
  28. harness = false