Cargo.toml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. async-trait = "0.1.42"
  27. multimap = "0.8.2"
  28. hex = "0.4.2"
  29. num_enum = "0.5.0"
  30. lazy_static = "1.4.0"
  31. itertools = "0.8.0"
  32. #fnv = "1.0.6"
  33. regex = "1"
  34. simplelog = "0.7.4"
  35. clap = "3.0.0-beta.1"
  36. failure = "0.1.8"
  37. failure_derive = "0.1.8"
  38. log = "0.4"
  39. ctrlc = "3.1.7"
  40. serde_json = "1.0.61"
  41. owning_ref = "0.4.1"
  42. smol = "1.2.4"
  43. futures = "0.3.5"
  44. async-channel = "1.4.2"
  45. async-executor = "1.4.0"
  46. async-dup = "1.1.0"
  47. async-std = "1.6.2"
  48. easy-parallel = "3.1.0"
  49. jsonrpc-core = "16.0.0"
  50. http-types = "2.9.0"
  51. async-h1 = "2.3.0"
  52. async-native-tls = "0.3.3"
  53. # GUI deps
  54. anyhow = "1.0"
  55. bytemuck = { version = "1.4", features = [ "derive" ] }
  56. image = "0.23"
  57. winit = "0.23"
  58. shaderc = "0.7"
  59. cgmath = "0.17"
  60. env_logger = "0.7"
  61. wgpu = "0.7"
  62. wgpu_glyph = "0.11"
  63. tobj = "2.0.4"
  64. # used by compile-shaders
  65. fs_extra = "1.2"
  66. glob = "0.3"
  67. [[bin]]
  68. name = "lisp"
  69. path = "lisp/lisp.rs"
  70. [[bin]]
  71. name = "zkvm"
  72. path = "src/bin/zkvm.rs"
  73. [[bin]]
  74. name = "dfi"
  75. path = "src/bin/dfi.rs"
  76. [[bin]]
  77. name = "mimc"
  78. path = "src/old/mimc.rs"
  79. [[bin]]
  80. name = "dfg"
  81. path = "src/bin/dfg.rs"
  82. [[bin]]
  83. name = "compile-shaders"
  84. path = "src/bin/compile-shaders.rs"
  85. [profile.release]
  86. debug = 1