Cargo.toml 827 B

123456789101112131415161718192021222324252627282930313233
  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. plugins = { path = "../plugins" }
  19. serde = { version = "1", features = ["derive"] }
  20. serde_json.workspace = true
  21. syntect = "5"
  22. tokio = { version = "1", features = ["rt-multi-thread", "signal", "time"] }
  23. tools = { path = "../tools" }
  24. [lints]
  25. workspace = true
  26. [dev-dependencies]
  27. mock-anthropic-service = { path = "../mock-anthropic-service" }
  28. serde_json.workspace = true
  29. tokio = { version = "1", features = ["rt-multi-thread"] }