Cargo.toml 980 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "minerd"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. description = "Darkfi mining daemon"
  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. [workspace]
  11. [dependencies]
  12. # Darkfi
  13. darkfi = {path = "../../../", features = ["async-daemonize", "validator"]}
  14. darkfi-sdk = {path = "../../../src/sdk"}
  15. darkfi-serial = {path = "../../../src/serial", features = ["async"]}
  16. # Misc
  17. log = "0.4.20"
  18. num-bigint = "0.4.4"
  19. # JSON-RPC
  20. tinyjson = "2.5.1"
  21. url = "2.5.0"
  22. # Daemon
  23. easy-parallel = "3.3.1"
  24. signal-hook-async-std = "0.2.2"
  25. signal-hook = "0.3.17"
  26. simplelog = "0.12.1"
  27. smol = "1.3.0"
  28. # Argument parsing
  29. serde = {version = "1.0.195", features = ["derive"]}
  30. structopt = "0.3.26"
  31. structopt-toml = "0.5.1"
  32. [patch.crates-io]
  33. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}
  34. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v4"}