Cargo.toml 967 B

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