Cargo.toml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. [package]
  2. name = "darkfi"
  3. version = "0.1.0"
  4. authors = ["darkfi <dev@dark.fi>"]
  5. edition = "2018"
  6. [lib]
  7. name = "drk"
  8. [dependencies]
  9. ff = "0.8"
  10. group = "0.8"
  11. bellman = { version = "0.8", default-features = false, features = ["groth16"] }
  12. bls12_381 = "0.3.1"
  13. jubjub = "0.5.1"
  14. zcash_primitives = "0.5.0"
  15. zcash_proofs = "0.5.0"
  16. # zcash_primitives = { git = "https://github.com/zcash/librustzcash" }
  17. #zcash_proofs = { git = "https://github.com/zcash/librustzcash" }
  18. #zcash_proofs = { git = "https://github.com/narodnik/librustzcash" }
  19. #bench-utils = { git = "https://github.com/scipr-lab/zexe", features = ["print-trace"]}
  20. rand = "0.7.3"
  21. rand_core = "0.5.1"
  22. sha2 = "0.9.1"
  23. rand_xorshift = "0.2"
  24. blake2s_simd = "0.5"
  25. blake2b_simd = "0.5.11"
  26. crypto_api_chachapoly = "0.4"
  27. bitvec = "0.18"
  28. bimap = "0.5.2"
  29. async-trait = "0.1.42"
  30. multimap = "0.8.2"
  31. hex = "0.4.2"
  32. num_enum = "0.5.0"
  33. lazy_static = "1.4.0"
  34. itertools = "0.8.0"
  35. #fnv = "1.0.6"
  36. regex = "1"
  37. simplelog = "0.7.4"
  38. clap = "3.0.0-beta.1"
  39. failure = "0.1.8"
  40. failure_derive = "0.1.8"
  41. log = "0.4"
  42. ctrlc = "3.1.7"
  43. serde_json = "1.0.61"
  44. owning_ref = "0.4.1"
  45. signal-hook = "0.3.8"
  46. smol = "1.2.4"
  47. futures = "0.3.5"
  48. async-channel = "1.4.2"
  49. async-executor = "1.4.0"
  50. async-dup = "1.1.0"
  51. async-std = "1.6.2"
  52. async-rwlock = "1.3.0"
  53. easy-parallel = "3.1.0"
  54. jsonrpc-core = "16.0.0"
  55. http-types = "2.9.0"
  56. async-h1 = "2.3.0"
  57. async-native-tls = "0.3.3"
  58. # zmq
  59. zeromq = { git="https://github.com/zeromq/zmq.rs", default-features = false, features = ["async-std-runtime", "all-transport"] }
  60. bytes = "1.0.1"
  61. # wallet deps
  62. rocksdb = "0.16.0"
  63. dirs = "3.0.2"
  64. [dependencies.rusqlite]
  65. version = "0.25.1"
  66. features = ["bundled", "sqlcipher"]
  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 = "mimc"
  75. path = "src/old/mimc.rs"
  76. [[bin]]
  77. name = "mint-classic"
  78. path = "src/bin/mint-classic.rs"
  79. [[bin]]
  80. name = "spend-classic"
  81. path = "src/bin/spend-classic.rs"
  82. [[bin]]
  83. name = "tx"
  84. path = "src/bin/tx.rs"
  85. [[bin]]
  86. name = "gatewayd"
  87. path = "src/bin/gatewayd.rs"
  88. [[bin]]
  89. name = "darkfid"
  90. path = "src/bin/darkfid.rs"
  91. [[bin]]
  92. name = "cashier"
  93. path = "src/bin/cashier.rs"
  94. [profile.release]
  95. debug = 1