Cargo.toml 917 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 = {version = "0.4.2", features = ["async"]}
  13. # Misc
  14. log = "0.4.27"
  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.4"
  23. # Daemon
  24. easy-parallel = "3.3.1"
  25. signal-hook-async-std = "0.3.0"
  26. signal-hook = "0.3.17"
  27. simplelog = "0.12.2"
  28. smol = "2.0.2"
  29. # Argument parsing
  30. serde = {version = "1.0.219", features = ["derive"]}
  31. structopt = "0.3.26"
  32. structopt-toml = "0.5.1"
  33. [lints]
  34. workspace = true