Cargo.toml 576 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "dnetview"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../"
  7. features = ["rpc"]
  8. [dependencies]
  9. # Tui
  10. termion = "1.5.6"
  11. tui = {version = "0.17.0", features = ["termion"]}
  12. # Async
  13. smol = "1.2.5"
  14. async-std = {version = "1.11.0", features = ["attributes"]}
  15. easy-parallel = "3.2.0"
  16. async-channel = "1.6.1"
  17. # Misc
  18. clap = "3.1.8"
  19. rand = "0.8.5"
  20. simplelog = "0.12.0-alpha1"
  21. log = "0.4.16"
  22. num_cpus = "1.13.1"
  23. url = "2.2.2"
  24. fxhash = "0.2.1"
  25. # Encoding and parsing
  26. serde_json = "1.0.79"
  27. serde = {version = "1.0.136", features = ["derive"]}