Cargo.toml 957 B

12345678910111213141516171819202122232425262728293031323334353637
  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. simplelog = "0.12.1"
  19. url = "2.5.0"
  20. serde_json = "1.0.108"
  21. toml = "0.8.8"
  22. libsqlite3-sys = {version = "0.27.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  23. # Daemon
  24. easy-parallel = "3.3.1"
  25. signal-hook-async-std = "0.2.2"
  26. signal-hook = "0.3.17"
  27. smol = "1.3.0"
  28. # Arg parsing
  29. serde = {version = "1.0.192", features = ["derive"]}
  30. structopt = "0.3.26"
  31. structopt-toml = "0.5.1"
  32. # ANCHOR_END: dependencies