Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. [lib]
  8. name = "sapvi"
  9. [dependencies]
  10. ff = "0.8"
  11. group = "0.8"
  12. bellman = { version = "0.8", default-features = false, features = ["groth16"] }
  13. bls12_381 = "0.3.1"
  14. jubjub = "0.5.1"
  15. zcash_primitives = { git = "https://github.com/zcash/librustzcash" }
  16. zcash_proofs = { git = "https://github.com/zcash/librustzcash" }
  17. #zcash_proofs = { git = "https://github.com/narodnik/librustzcash" }
  18. #bench-utils = { git = "https://github.com/scipr-lab/zexe", features = ["print-trace"]}
  19. rand = "0.7.3"
  20. rand_core = "0.5.1"
  21. sha2 = "0.9.1"
  22. rand_xorshift = "0.2"
  23. blake2s_simd = "0.5"
  24. bitvec = "0.18"
  25. bimap = "0.5.2"
  26. hex = "0.4.2"
  27. simplelog = "0.7.4"
  28. clap = "3.0.0-beta.1"
  29. failure = "0.1.8"
  30. failure_derive = "0.1.8"
  31. regex = "1"
  32. lazy_static = "1.4.0"
  33. itertools = "0.8.0"
  34. fnv = "1.0.6"
  35. [[bin]]
  36. name = "basic"
  37. path = "src/old/basic_minimal.rs"
  38. [[bin]]
  39. name = "mimc"
  40. path = "src/bin/mimc.rs"
  41. [[bin]]
  42. name = "zkvm"
  43. path = "src/bin/zkvm.rs"
  44. [[bin]]
  45. name = "mint"
  46. path = "src/bin/mint.rs"
  47. [[bin]]
  48. name = "jubjub"
  49. path = "src/bin/jubjub.rs"
  50. [[bin]]
  51. name = "lisp"
  52. path = "lisp/lisp.rs"