Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. bitvec = "0.18"
  23. [[bin]]
  24. name = "sha256"
  25. path = "src/sha256.rs"
  26. [[bin]]
  27. name = "pedersen_hash"
  28. path = "src/pedersen_hash.rs"
  29. [[bin]]
  30. name = "mimc"
  31. path = "src/mimc.rs"
  32. [[bin]]
  33. name = "blake"
  34. path = "src/blake.rs"
  35. [[bin]]
  36. name = "zec"
  37. path = "src/zec.rs"
  38. [[bin]]
  39. name = "simple"
  40. path = "src/simple.rs"
  41. [[bin]]
  42. name = "mint"
  43. path = "src/mint.rs"
  44. [[bin]]
  45. name = "spend"
  46. path = "src/spend.rs"
  47. [[bin]]
  48. name = "eq"
  49. path = "src/eq.rs"
  50. [[bin]]
  51. name = "basic"
  52. path = "src/basic_minimal.rs"
  53. [[bin]]
  54. name = "vm"
  55. path = "src/vm.rs"