Cargo.toml 727 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "dchat"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. description = "Demo chat app used to document DarkFi networking code"
  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. # ANCHOR: darkfi
  11. [dependencies]
  12. darkfi = {path = "../../", features = ["net", "rpc"]}
  13. darkfi-serial = {path = "../../src/serial"}
  14. # ANCHOR_END: darkfi
  15. # ANCHOR: dependencies
  16. async-std = "1.12.0"
  17. async-trait = "0.1.71"
  18. easy-parallel = "3.3.0"
  19. smol = "1.3.0"
  20. log = "0.4.19"
  21. simplelog = "0.12.1"
  22. url = "2.4.0"
  23. serde_json = "1.0.103"
  24. serde = {version = "1.0.173", features = ["derive"]}
  25. toml = "0.7.6"
  26. # ANCHOR_END: dependencies