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.

37 lines
864 B

4 years ago
4 years ago
  1. [package]
  2. name = "babyjubjub-rs"
  3. version = "0.0.10"
  4. authors = ["arnaucube <root@arnaucube.com>"]
  5. edition = "2021"
  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.8"
  13. num = "0.4"
  14. num-bigint = {version = "0.4", features = ["rand"]}
  15. num-traits = "0.2.8"
  16. blake2 = "0.10.6"
  17. # blake-hash = {version="0.4.0", optional=true}
  18. # blake = {version="2.0.1", optional=true}
  19. generic-array = "0.14"
  20. poseidon-rs = "0.0.8"
  21. arrayref = "0.3.5"
  22. lazy_static = "1.4.0"
  23. serde = { version = "1.0.152", features = ["derive"] }
  24. [dev-dependencies]
  25. criterion = "0.3"
  26. hex = "0.4"
  27. [[bench]]
  28. name = "bench_babyjubjub"
  29. harness = false
  30. # [features]
  31. # default = ["blake-hash"]
  32. # aarch64 = ["blake"]