Cargo.toml 911 B

1234567891011121314151617181920212223242526272829303132333435363738
  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.9.0"
  22. # Misc
  23. clap = {version = "4.3.11", features = ["derive"]}
  24. rand = "0.8.5"
  25. simplelog = "0.12.1"
  26. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  27. log = "0.4.19"
  28. url = "2.4.0"
  29. thiserror = "1.0.43"
  30. # Encoding and parsing
  31. serde_json = "1.0.100"
  32. serde = {version = "1.0.167", features = ["derive"]}
  33. hex = "0.4.3"