Cargo.toml 339 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "map"
  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 = "0.16.0"
  12. # Async
  13. smol = "1.2.4"
  14. async-std = {version = "1.10.0", features = ["attributes"]}
  15. # Misc
  16. rand = "0.6.5"
  17. log = "0.4.14"
  18. # Encoding and parsing
  19. serde_json = "1.0.74"