Cargo.toml 772 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "darkfi-mmproxy"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. description = "Proxy server for DarkFi/Monero merge mining"
  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", "rpc"]}
  12. darkfi-serial = {path = "../../src/serial", features = ["async"]}
  13. # Misc
  14. log = "0.4.20"
  15. # Encoding
  16. url = "2.4.1"
  17. # Daemon
  18. easy-parallel = "3.3.0"
  19. signal-hook-async-std = "0.2.2"
  20. signal-hook = "0.3.17"
  21. simplelog = "0.12.1"
  22. smol = "1.3.0"
  23. # Argument parsing
  24. serde = {version = "1.0.188", features = ["derive"]}
  25. structopt = "0.3.26"
  26. structopt-toml = "0.5.1"