Cargo.toml 844 B

12345678910111213141516171819202122232425262728293031323334353637
  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://codeberg.org/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. # ANCHOR: dependencies
  11. [dependencies]
  12. # ANCHOR: darkfi
  13. darkfi = {path = "../../../", features = ["toml", "async-daemonize", "rpc"]}
  14. darkfi-serial = "0.4.2"
  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.2"
  22. # arg parsing
  23. serde = {version = "1.0.219", features = ["derive"]}
  24. structopt = "0.3.26"
  25. structopt-toml = "0.5.1"
  26. # misc
  27. async-trait = "0.1.88"
  28. log = "0.4.27"
  29. url = "2.5.4"
  30. # ANCHOR_END: dependencies
  31. [lints]
  32. workspace = true