Cargo.toml 528 B

12345678910111213141516
  1. [package]
  2. authors = ["kestrel <kestrel@flying-kestrel.ca>"]
  3. categories = ["command-line-interface"]
  4. description = "cliask is a crate to handle prompting the user for input in a CLI context"
  5. edition = "2024"
  6. keywords = ["cli", "input", "prompt", "ask", "interactive"]
  7. license = "LGPL-3.0-only"
  8. name = "cliask"
  9. repository = "https://git.flying-kestrel.ca/kestrel/cliask"
  10. version = "0.1.0"
  11. [dependencies]
  12. cliask-derive = { path = "derive", version = "0.1.0" }
  13. termion = { version = "4" }
  14. unicode-segmentation = { version = "1" }