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.

39 lines
923 B

1 year ago
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", "serde"]}
  17. num-traits = "0.2.8"
  18. blake-hash = {version="0.4.0", optional=true}
  19. blake = {version="2.0.1", optional=true}
  20. generic-array = "0.14"
  21. poseidon-rs = "0.0.8"
  22. arrayref = "0.3.5"
  23. lazy_static = "1.4.0"
  24. serde = { version = "1.0.152", features = ["derive"] }
  25. bytes = "1.4.0"
  26. [dev-dependencies]
  27. criterion = "0.3"
  28. hex = "0.4"
  29. [[bench]]
  30. name = "bench_babyjubjub"
  31. harness = false
  32. [features]
  33. default = ["blake-hash"]
  34. aarch64 = ["blake"]