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.

40 lines
934 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_new = {package="rand", version="0.8.5"}
  13. rand = "0.4.6"
  14. # rand = "0.8"
  15. num = "0.4"
  16. num-bigint = {version = "0.4", features = ["rand"]}
  17. num-traits = "0.2.8"
  18. # blake2 = "0.10.6"
  19. blake-hash = {version="0.4.0", optional=true}
  20. blake = {version="2.0.1", optional=true}
  21. generic-array = "0.14"
  22. poseidon-rs = "0.0.8"
  23. arrayref = "0.3.5"
  24. lazy_static = "1.4.0"
  25. serde = { version = "1.0.152", features = ["derive"] }
  26. bytes = "1.4.0"
  27. [dev-dependencies]
  28. criterion = "0.3"
  29. hex = "0.4"
  30. [[bench]]
  31. name = "bench_babyjubjub"
  32. harness = false
  33. [features]
  34. default = ["blake-hash"]
  35. aarch64 = ["blake"]