Cargo.toml 659 B

123456789101112131415161718192021222324
  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. reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
  14. runtime = { path = "../runtime" }
  15. serde = { version = "1", features = ["derive"] }
  16. serde_json = "1"
  17. sha2 = "0.10"
  18. syntect = "5"
  19. tokio = { version = "1", features = ["rt-multi-thread", "time"] }
  20. tools = { path = "../tools" }
  21. [lints]
  22. workspace = true