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.

21 lines
605 B

3 years ago
  1. [package]
  2. name = "nova"
  3. version = "0.1.0"
  4. authors = ["Srinath Setty <srinath@microsoft.com>"]
  5. edition = "2018"
  6. description = "Recursive zkSNARKs without trusted setup"
  7. documentation = "https://docs.rs/nova/"
  8. readme = "README.md"
  9. repository = "https://github.com/Microsoft/Nova"
  10. license-file = "LICENSE"
  11. keywords = ["Recursive zkSNARKs", "cryptography", "proofs"]
  12. [dependencies]
  13. curve25519-dalek = {version = "3.0.0", features = ["simd_backend"]}
  14. merlin = "2.0.0"
  15. rand = "0.7.3"
  16. digest = "0.8.1"
  17. sha3 = "0.8.2"
  18. rayon = "1.3.0"
  19. rand_core = { version = "0.5", default-features = false }
  20. itertools = "0.9.0"