Cargo.toml 903 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = "sapvi"
  3. version = "0.1.0"
  4. authors = ["narodnik <x@x.org>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. ff = "0.7"
  9. group = "0.7"
  10. bellman = { version = "0.7", default-features = false, features = ["groth16"] }
  11. bls12_381 = "0.2"
  12. jubjub = "0.4"
  13. zcash_primitives = { git = "https://github.com/zcash/librustzcash" }
  14. zcash_proofs = { git = "https://github.com/zcash/librustzcash" }
  15. #bench-utils = { git = "https://github.com/scipr-lab/zexe", features = ["print-trace"]}
  16. rand = "0.7.3"
  17. rand_core = "0.5.1"
  18. sha2 = "0.9.1"
  19. rand_xorshift = "0.2"
  20. blake2s_simd = "0.5"
  21. [[bin]]
  22. name = "sha256"
  23. path = "src/sha256.rs"
  24. [[bin]]
  25. name = "pedersen_hash"
  26. path = "src/pedersen_hash.rs"
  27. [[bin]]
  28. name = "mimc"
  29. path = "src/mimc.rs"
  30. [[bin]]
  31. name = "blake"
  32. path = "src/blake.rs"
  33. [[bin]]
  34. name = "zec"
  35. path = "src/zec.rs"