Cargo.toml 640 B

12345678910111213141516171819202122
  1. [package]
  2. name = "dam-cli"
  3. version = "0.4.1"
  4. description = "CLI-utility to control a 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-sdk", "rpc"]}
  13. darkfi-serial = {path = "../../../../src/serial"}
  14. # Misc
  15. clap = {version = "4.4.11", features = ["derive"]}
  16. tracing = "0.1.44"
  17. tracing-subscriber = { version = "0.3.22", default-features = false, features = ["fmt"] }
  18. smol = "2.0.2"
  19. url = "2.5.7"