Cargo.toml 776 B

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