2026-04-01 03:55:00 +00:00
|
|
|
[package]
|
|
|
|
|
name = "rusty-claude-cli"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
publish.workspace = true
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "claw"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
api = { path = "../api" }
|
|
|
|
|
commands = { path = "../commands" }
|
|
|
|
|
crossterm = "0.28"
|
|
|
|
|
pulldown-cmark = "0.13"
|
|
|
|
|
rustyline = "15"
|
|
|
|
|
runtime = { path = "../runtime" }
|
2026-04-01 04:30:28 +00:00
|
|
|
plugins = { path = "../plugins" }
|
2026-04-03 14:31:25 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2026-04-01 18:57:50 +09:00
|
|
|
serde_json.workspace = true
|
2026-04-01 03:55:00 +00:00
|
|
|
syntect = "5"
|
2026-04-01 05:55:24 +00:00
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "signal", "time"] }
|
2026-04-01 03:55:00 +00:00
|
|
|
tools = { path = "../tools" }
|
2026-05-25 04:21:32 +02:00
|
|
|
log = "0.4"
|
|
|
|
|
|
2026-04-01 03:55:00 +00:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
2026-04-03 01:15:52 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
mock-anthropic-service = { path = "../mock-anthropic-service" }
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
2026-04-05 18:40:33 +00:00
|
|
|
|