Cargo.toml 553 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "rusty-claude-cli"
  3. version.workspace = true
  4. edition.workspace = true
  5. license.workspace = true
  6. publish.workspace = true
  7. [[bin]]
  8. name = "claw"
  9. path = "src/main.rs"
  10. [dependencies]
  11. api = { path = "../api" }
  12. commands = { path = "../commands" }
  13. compat-harness = { path = "../compat-harness" }
  14. crossterm = "0.28"
  15. pulldown-cmark = "0.13"
  16. rustyline = "15"
  17. runtime = { path = "../runtime" }
  18. serde_json = "1"
  19. syntect = "5"
  20. tokio = { version = "1", features = ["rt-multi-thread", "time"] }
  21. tools = { path = "../tools" }
  22. [lints]
  23. workspace = true