Cargo.toml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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 = "0.5.0"
  16. zcash_proofs = "0.5.0"
  17. # zcash_primitives = { git = "https://github.com/zcash/librustzcash" }
  18. #zcash_proofs = { git = "https://github.com/zcash/librustzcash" }
  19. #zcash_proofs = { git = "https://github.com/narodnik/librustzcash" }
  20. #bench-utils = { git = "https://github.com/scipr-lab/zexe", features = ["print-trace"]}
  21. rand = "0.7.3"
  22. rand_core = "0.5.1"
  23. sha2 = "0.9.1"
  24. rand_xorshift = "0.2"
  25. blake2s_simd = "0.5"
  26. bitvec = "0.18"
  27. bimap = "0.5.2"
  28. async-trait = "0.1.42"
  29. multimap = "0.8.2"
  30. hex = "0.4.2"
  31. num_enum = "0.5.0"
  32. lazy_static = "1.4.0"
  33. itertools = "0.8.0"
  34. #fnv = "1.0.6"
  35. regex = "1"
  36. simplelog = "0.7.4"
  37. clap = "3.0.0-beta.1"
  38. failure = "0.1.8"
  39. failure_derive = "0.1.8"
  40. log = "0.4"
  41. ctrlc = "3.1.7"
  42. serde_json = "1.0.61"
  43. owning_ref = "0.4.1"
  44. smol = "1.2.4"
  45. futures = "0.3.5"
  46. async-channel = "1.4.2"
  47. async-executor = "1.4.0"
  48. async-dup = "1.1.0"
  49. async-std = "1.6.2"
  50. easy-parallel = "3.1.0"
  51. jsonrpc-core = "16.0.0"
  52. http-types = "2.9.0"
  53. async-h1 = "2.3.0"
  54. async-native-tls = "0.3.3"
  55. # GUI deps
  56. anyhow = "1.0"
  57. bytemuck = { version = "1.4", features = [ "derive" ] }
  58. image = "0.23"
  59. winit = "0.23"
  60. shaderc = "0.7"
  61. cgmath = "0.17"
  62. env_logger = "0.7"
  63. wgpu = "0.7"
  64. wgpu_glyph = "0.11"
  65. tobj = "2.0.4"
  66. # used by compile-shaders
  67. fs_extra = "1.2"
  68. glob = "0.3"
  69. [[bin]]
  70. name = "lisp"
  71. path = "lisp/lisp.rs"
  72. [[bin]]
  73. name = "zkvm"
  74. path = "src/bin/zkvm.rs"
  75. [[bin]]
  76. name = "dfi"
  77. path = "src/bin/dfi.rs"
  78. [[bin]]
  79. name = "mimc"
  80. path = "src/old/mimc.rs"
  81. [[bin]]
  82. name = "mint-classic"
  83. path = "src/bin/mint-classic.rs"
  84. [[bin]]
  85. name = "spend-classic"
  86. path = "src/bin/spend-classic.rs"
  87. [[bin]]
  88. name = "dfg"
  89. path = "src/bin/dfg.rs"
  90. [[bin]]
  91. name = "compile-shaders"
  92. path = "src/bin/compile-shaders.rs"
  93. [profile.release]
  94. debug = 1