Cargo.toml 781 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "swapd"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. description = "Atomic Swap Daemon"
  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 = {path = "../../", features = ["async-daemonize", "async-serial", "system", "util", "net", "rpc", "sled"]}
  12. darkfi-serial = {path = "../../src/serial", features = ["async"]}
  13. # Misc
  14. log = "0.4.21"
  15. # Encoding
  16. url = "2.5.0"
  17. # Database
  18. sled = "0.34.7"
  19. # Daemon
  20. easy-parallel = "3.3.1"
  21. signal-hook-async-std = "0.2.2"
  22. signal-hook = "0.3.17"
  23. simplelog = "0.12.2"
  24. smol = "1.3.0"
  25. # Argument parsing
  26. serde = {version = "1.0.197", features = ["derive"]}
  27. structopt = "0.3.26"
  28. structopt-toml = "0.5.1"