Cargo.toml 856 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "dchatd"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. description = "Simple chat app p2p daemon 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: dependencies
  11. [dependencies]
  12. # ANCHOR: darkfi
  13. darkfi = {path = "../../../", features = ["net", "toml", "system", "async-daemonize", "rpc"]}
  14. darkfi-serial = {path = "../../../src/serial"}
  15. # ANCHOR_END: darkfi
  16. # daemon
  17. easy-parallel = "3.3.1"
  18. signal-hook-async-std = "0.2.2"
  19. signal-hook = "0.3.17"
  20. simplelog = "0.12.2"
  21. smol = "2.0.0"
  22. # arg parsing
  23. serde = {version = "1.0.203", features = ["derive"]}
  24. structopt = "0.3.26"
  25. structopt-toml = "0.5.1"
  26. # misc
  27. async-trait = "0.1.80"
  28. log = "0.4.21"
  29. url = "2.5.0"
  30. # ANCHOR_END: dependencies