Cargo.toml 829 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "dchat"
  3. version = "0.4.2"
  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", "toml", "system", "async-daemonize", "rpc"]}
  13. darkfi-serial = {path = "../../src/serial"}
  14. # ANCHOR_END: darkfi
  15. # ANCHOR: dependencies
  16. async-trait = "0.1.74"
  17. log = "0.4.20"
  18. url = "2.5.0"
  19. # Daemon
  20. easy-parallel = "3.3.1"
  21. signal-hook-async-std = "0.2.2"
  22. signal-hook = "0.3.17"
  23. simplelog = "0.12.1"
  24. smol = "1.3.0"
  25. # Arg parsing
  26. serde = {version = "1.0.193", features = ["derive"]}
  27. structopt = "0.3.26"
  28. structopt-toml = "0.5.1"
  29. # ANCHOR_END: dependencies