Cargo.toml 840 B

1234567891011121314151617181920212223242526272829
  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. tracing = "0.1.41"
  17. tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] }
  18. tracing-appender = "0.2.3"
  19. signal-hook-async-std = "0.3.0"
  20. signal-hook = "0.3.18"
  21. smol = "2.0.2"
  22. # Argument parsing
  23. serde = {version = "1.0.219", features = ["derive"]}
  24. structopt = "0.3.26"
  25. structopt-toml = "0.5.1"