Cargo.toml 983 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. ratatui = { version = "0.22.0", features = ["all-widgets", "termion"]}
  18. # Async
  19. smol = "1.3.0"
  20. async-std = {version = "1.12.0", features = ["attributes"]}
  21. easy-parallel = "3.3.0"
  22. async-channel = "1.9.0"
  23. # Misc
  24. clap = {version = "4.3.19", features = ["derive"]}
  25. rand = "0.8.5"
  26. simplelog = "0.12.1"
  27. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  28. log = "0.4.19"
  29. url = "2.4.0"
  30. thiserror = "1.0.44"
  31. # Encoding and parsing
  32. serde_json = "1.0.104"
  33. serde = {version = "1.0.179", features = ["derive"]}
  34. hex = "0.4.3"