Cargo.toml 448 B

1234567891011121314151617
  1. [package]
  2. name = "rusty-claude-cli"
  3. version.workspace = true
  4. edition.workspace = true
  5. license.workspace = true
  6. publish.workspace = true
  7. [dependencies]
  8. clap = { version = "4.5.38", features = ["derive"] }
  9. compat-harness = { path = "../compat-harness" }
  10. crossterm = "0.29.0"
  11. pulldown-cmark = "0.13.0"
  12. runtime = { path = "../runtime" }
  13. syntect = { version = "5.2.0", default-features = false, features = ["default-fancy"] }
  14. [lints]
  15. workspace = true