Cargo.toml 915 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "damd"
  3. version = "0.4.1"
  4. description = "Denial-of-service Analysis Multitool daemon."
  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
  12. darkfi = {path = "../../../../", features = ["async-daemonize", "rpc"]}
  13. darkfi-serial = {path = "../../../../src/serial"}
  14. # Misc
  15. tracing = "0.1.44"
  16. # JSON-RPC
  17. async-trait = "0.1.89"
  18. tinyjson = "2.5.1"
  19. url = "2.5.8"
  20. # Daemon
  21. async-std = {version = "1.13.2", features = ["attributes"]}
  22. easy-parallel = "3.3.1"
  23. signal-hook-async-std = "0.4.0"
  24. signal-hook = "0.4.4"
  25. tracing-subscriber = { version = "0.3.23", default-features = false, features = ["fmt"] }
  26. tracing-appender = "0.2.5"
  27. smol = "2.0.2"
  28. # Argument parsing
  29. serde = {version = "1.0.228", features = ["derive"]}
  30. structopt = "0.3.26"
  31. structopt-toml = "0.5.1"