Cargo.toml 492 B

123456789101112131415161718192021
  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. api = { path = "../api" }
  9. commands = { path = "../commands" }
  10. compat-harness = { path = "../compat-harness" }
  11. crossterm = "0.28"
  12. pulldown-cmark = "0.13"
  13. runtime = { path = "../runtime" }
  14. serde_json = "1"
  15. syntect = "5"
  16. tokio = { version = "1", features = ["rt-multi-thread", "time"] }
  17. tools = { path = "../tools" }
  18. [lints]
  19. workspace = true