Cargo.toml 298 B

123456789101112131415
  1. [package]
  2. name = "client"
  3. version = "0.1.0"
  4. edition = "2021"
  5. default-run = "client"
  6. [dependencies]
  7. utils = { path = "../utils" }
  8. logging = { path = "../logging" }
  9. cursive = "0.21"
  10. cli-clipboard = "0.4.0"
  11. # TODO: Write an HTTP client.
  12. reqwest = { version = "0.12.15", features = [ "blocking" ] }