Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.8"
  9. group = "0.8"
  10. bellman = { version = "0.8", default-features = false, features = ["groth16"] }
  11. bls12_381 = "0.3.1"
  12. jubjub = "0.5.1"
  13. zcash_primitives = { git = "https://github.com/zcash/librustzcash" }
  14. #zcash_proofs = { git = "https://github.com/zcash/librustzcash" }
  15. zcash_proofs = { git = "https://github.com/narodnik/librustzcash" }
  16. #bench-utils = { git = "https://github.com/scipr-lab/zexe", features = ["print-trace"]}
  17. rand = "0.7.3"
  18. rand_core = "0.5.1"
  19. sha2 = "0.9.1"
  20. rand_xorshift = "0.2"
  21. blake2s_simd = "0.5"
  22. [[bin]]
  23. name = "sha256"
  24. path = "src/sha256.rs"
  25. [[bin]]
  26. name = "pedersen_hash"
  27. path = "src/pedersen_hash.rs"
  28. [[bin]]
  29. name = "mimc"
  30. path = "src/mimc.rs"
  31. [[bin]]
  32. name = "blake"
  33. path = "src/blake.rs"
  34. [[bin]]
  35. name = "zec"
  36. path = "src/zec.rs"
  37. [[bin]]
  38. name = "simple"
  39. path = "src/simple.rs"