Cargo.toml 700 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "darkwiki"
  3. description = "CLI utility for interacting with darkwikid"
  4. version = "0.4.1"
  5. edition = "2021"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. [dependencies]
  11. darkfi = {path = "../../../", features = ["rpc"]}
  12. # Async
  13. smol = "1.3.0"
  14. async-std = {version = "1.12.0", features = ["attributes"]}
  15. async-trait = "0.1.71"
  16. async-channel = "1.9.0"
  17. futures = "0.3.28"
  18. # Misc
  19. log = "0.4.19"
  20. simplelog = "0.12.1"
  21. rand = "0.8.5"
  22. url = "2.4.0"
  23. # Encoding and parsing
  24. serde = {version = "1.0.167", features = ["derive"]}
  25. serde_json = "1.0.100"
  26. structopt = "0.3.26"