Cargo.toml 790 B

123456789101112131415161718192021222324252627282930313233343536
  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 = "0.4.2"
  14. # Misc
  15. log = "0.4.27"
  16. # JSON-RPC
  17. async-trait = "0.1.88"
  18. tinyjson = "2.5.1"
  19. url = "2.5.4"
  20. # Daemon
  21. async-std = {version = "1.13.1", features = ["attributes"]}
  22. easy-parallel = "3.3.1"
  23. signal-hook-async-std = "0.3.0"
  24. signal-hook = "0.3.17"
  25. simplelog = "0.12.2"
  26. smol = "2.0.2"
  27. # Argument parsing
  28. serde = {version = "1.0.219", features = ["derive"]}
  29. structopt = "0.3.26"
  30. structopt-toml = "0.5.1"