Cargo.toml 894 B

123456789101112131415161718192021222324252627282930313233343536
  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. # Monero
  16. monero = {version = "0.19.0", features = ["full"]}
  17. surf = "2.3.2"
  18. # Encoding
  19. url = "2.4.1"
  20. uuid = {version = "1.5.0", features = ["v4"]}
  21. # Daemon
  22. easy-parallel = "3.3.1"
  23. signal-hook-async-std = "0.2.2"
  24. signal-hook = "0.3.17"
  25. simplelog = "0.12.1"
  26. smol = "1.3.0"
  27. # Argument parsing
  28. serde = {version = "1.0.190", features = ["derive"]}
  29. structopt = "0.3.26"
  30. structopt-toml = "0.5.1"