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.

23 lines
645 B

3 years ago
3 years ago
  1. [package]
  2. name = "nova-snark"
  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. merlin = "2.0.0"
  14. rand = "0.7.3"
  15. digest = "0.8.1"
  16. sha3 = "0.8.2"
  17. rayon = "1.3.0"
  18. rand_core = { version = "0.5", default-features = false }
  19. itertools = "0.9.0"
  20. subtle = "2.4"
  21. [dev-dependencies]
  22. curve25519-dalek = {version = "3.0.0", features = ["simd_backend"]}