Cargo.toml 784 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "drk2"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. description = "Command-line client for darkfid"
  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. [dependencies]
  11. # Darkfi
  12. darkfi = {path = "../../", features = ["async-daemonize", "rpc"]}
  13. # Misc
  14. log = "0.4.20"
  15. rodio = {version = "0.17.3", default-features = false, features = ["minimp3"]}
  16. rusqlite = {version = "0.30.0", features = ["sqlcipher"]}
  17. url = "2.5.0"
  18. # Daemon
  19. easy-parallel = "3.3.1"
  20. signal-hook-async-std = "0.2.2"
  21. signal-hook = "0.3.17"
  22. simplelog = "0.12.1"
  23. smol = "1.3.0"
  24. # Argument parsing
  25. serde = {version = "1.0.195", features = ["derive"]}
  26. structopt = "0.3.26"
  27. structopt-toml = "0.5.1"