Cargo.toml 731 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "dao"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "CLI utility for interacting with daod"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies.darkfi]
  11. path = "../../../"
  12. features = ["rpc"]
  13. [dependencies]
  14. # Async
  15. smol = "1.2.5"
  16. futures = "0.3.24"
  17. async-std = {version = "1.12.0", features = ["attributes"]}
  18. async-trait = "0.1.57"
  19. async-channel = "1.7.1"
  20. async-executor = "1.4.1"
  21. # Misc
  22. clap = {version = "3.2.20", features = ["derive"]}
  23. log = "0.4.17"
  24. num_cpus = "1.13.1"
  25. simplelog = "0.12.0"
  26. url = "2.3.1"
  27. prettytable-rs = "0.9.0"
  28. # Encoding and parsing
  29. serde_json = "1.0.85"