Cargo.toml 820 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "dnetview"
  3. description = "P2P network monitoring TUI utility"
  4. version = "0.4.1"
  5. edition = "2021"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. [dependencies.darkfi]
  11. path = "../../"
  12. features = ["rpc"]
  13. [dependencies]
  14. # Tui
  15. termion = "2.0.1"
  16. tui = {version = "0.19.0", features = ["termion"]}
  17. # Async
  18. smol = "1.3.0"
  19. async-std = {version = "1.12.0", features = ["attributes"]}
  20. easy-parallel = "3.3.0"
  21. async-channel = "1.8.0"
  22. # Misc
  23. clap = {version = "4.2.7", features = ["derive"]}
  24. rand = "0.8.5"
  25. simplelog = "0.12.1"
  26. log = "0.4.17"
  27. url = "2.3.1"
  28. thiserror = "1.0.40"
  29. # Encoding and parsing
  30. serde_json = "1.0.96"
  31. serde = {version = "1.0.163", features = ["derive"]}
  32. hex = "0.4.3"