Cargo.toml 858 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = "dao"
  3. version = "0.3.0"
  4. edition = "2021"
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. license = "AGPL-3.0-only"
  7. [dependencies]
  8. darkfi = {path = "../../", features = ["rpc", "crypto", "tx", "node"]}
  9. darkfi-serial = {path = "../../src/serial"}
  10. # Async
  11. smol = "1.2.5"
  12. futures = "0.3.24"
  13. async-std = {version = "1.12.0", features = ["attributes"]}
  14. async-trait = "0.1.57"
  15. async-channel = "1.7.1"
  16. async-executor = "1.4.1"
  17. easy-parallel = "3.2.0"
  18. # Misc
  19. log = "0.4.17"
  20. num_cpus = "1.13.1"
  21. simplelog = "0.12.0"
  22. thiserror = "1.0.37"
  23. # Crypto
  24. incrementalmerkletree = "0.3.0"
  25. pasta_curves = "0.4.0"
  26. halo2_gadgets = "0.2.0"
  27. halo2_proofs = "0.2.0"
  28. rand = "0.8.5"
  29. crypto_api_chachapoly = "0.5.0"
  30. group = "0.12.0"
  31. # Encoding and parsing
  32. serde_json = "1.0.85"
  33. bs58 = "0.4.0"
  34. fxhash = "0.2.1"
  35. # Utilities
  36. lazy_static = "1.4.0"
  37. url = "2.3.1"