Cargo.toml 1010 B

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