Cargo.toml 279 B

1234567891011121314151617181920212223
  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. # Misc
  15. rand = "0.6.5"
  16. log = "0.4.14"
  17. # Encoding and parsing
  18. serde_json = "1.0.74"