Cargo.toml 740 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "generic-node"
  3. version = "0.4.1"
  4. description = "Generic node daemon to test out design choices before integrating them to core nodes."
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. repository = "https://codeberg.org/darkrenaissance/darkfi"
  7. license = "AGPL-3.0-only"
  8. edition = "2021"
  9. [workspace]
  10. [dependencies]
  11. darkfi = {path = "../../../", features = ["async-daemonize", "net"]}
  12. darkfi-serial = {version = "0.5.0", features = ["async"]}
  13. rand = "0.8.5"
  14. # Daemon
  15. easy-parallel = "3.3.1"
  16. log = "0.4.27"
  17. signal-hook-async-std = "0.3.0"
  18. signal-hook = "0.3.18"
  19. simplelog = "0.12.2"
  20. smol = "2.0.2"
  21. # Argument parsing
  22. serde = {version = "1.0.219", features = ["derive"]}
  23. structopt = "0.3.26"
  24. structopt-toml = "0.5.1"