Cargo.toml 940 B

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