Cargo.toml 926 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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://codeberg.org/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.21"
  15. # Monero
  16. monero = {version = "0.21.0", features = ["full"]}
  17. # HTTP RPC
  18. surf = "2.3.2"
  19. tide = "0.17.0-beta.1"
  20. # Encoding
  21. hex = "0.4.3"
  22. url = "2.5.0"
  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.2"
  28. smol = "2.0.0"
  29. # Argument parsing
  30. serde = {version = "1.0.203", features = ["derive"]}
  31. structopt = "0.3.26"
  32. structopt-toml = "0.5.1"
  33. [lints]
  34. workspace = true