Cargo.toml 837 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "dnetview"
  3. description = "P2P network monitoring TUI utility"
  4. version = "0.3.0"
  5. edition = "2021"
  6. authors = ["darkfi <dev@dark.fi>"]
  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 = "1.5.6"
  16. tui = {version = "0.19.0", features = ["termion"]}
  17. # Async
  18. smol = "1.2.5"
  19. async-std = {version = "1.12.0", features = ["attributes"]}
  20. easy-parallel = "3.2.0"
  21. async-channel = "1.7.1"
  22. # Misc
  23. clap = {version = "3.2.20", features = ["derive"]}
  24. rand = "0.8.5"
  25. simplelog = "0.12.0"
  26. log = "0.4.17"
  27. num_cpus = "1.13.1"
  28. url = "2.3.1"
  29. fxhash = "0.2.1"
  30. thiserror = "1.0.37"
  31. # Encoding and parsing
  32. serde_json = "1.0.85"
  33. serde = {version = "1.0.145", features = ["derive"]}
  34. hex = "0.4.3"