Cargo.toml 312 B

12345678910111213141516
  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. url = "2.5.8"
  12. # TODO: Write an HTTP client.
  13. reqwest = { version = "0.12.15", features = [ "blocking" ] }