feat: Rust port of Claude Code CLI
Crates:
- api: Anthropic Messages API client with SSE streaming
- tools: Claude-compatible tool implementations (Bash, Read, Write, Edit, Glob, Grep + extended suite)
- runtime: conversation loop, session persistence, permissions, system prompt builder
- rusty-claude-cli: terminal UI with markdown rendering, syntax highlighting, spinners
- commands: subcommand definitions
- compat-harness: upstream TS parity verification
All crates pass cargo fmt/clippy/test.
2026-04-01 03:43:09 +10:00
|
|
|
[package]
|
|
|
|
|
name = "runtime"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
publish.workspace = true
|
|
|
|
|
|
2026-04-01 04:39:39 +10:00
|
|
|
[dependencies]
|
2026-04-01 05:47:02 +10:00
|
|
|
sha2 = "0.10"
|
2026-04-01 04:39:39 +10:00
|
|
|
glob = "0.3"
|
2026-04-01 16:25:27 +10:00
|
|
|
plugins = { path = "../plugins" }
|
2026-04-01 04:39:39 +10:00
|
|
|
regex = "1"
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
2026-04-01 19:57:50 +10:00
|
|
|
serde_json.workspace = true
|
2026-04-01 07:04:58 +10:00
|
|
|
tokio = { version = "1", features = ["io-util", "macros", "process", "rt", "rt-multi-thread", "time"] }
|
2026-04-01 04:39:39 +10:00
|
|
|
walkdir = "2"
|
|
|
|
|
|
feat: Rust port of Claude Code CLI
Crates:
- api: Anthropic Messages API client with SSE streaming
- tools: Claude-compatible tool implementations (Bash, Read, Write, Edit, Glob, Grep + extended suite)
- runtime: conversation loop, session persistence, permissions, system prompt builder
- rusty-claude-cli: terminal UI with markdown rendering, syntax highlighting, spinners
- commands: subcommand definitions
- compat-harness: upstream TS parity verification
All crates pass cargo fmt/clippy/test.
2026-04-01 03:43:09 +10:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|