-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (45 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
58 lines (45 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "claude_rs"
version = "0.1.0"
edition = "2024"
description = "Pure Rust SDK for Claude Code CLI"
license = "MIT"
repository = "https://github.com/codingagentsystem/claude_rs"
keywords = ["claude", "ai", "sdk", "cli"]
categories = ["api-bindings", "asynchronous"]
[dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
async-stream = "0.3"
futures = "0.3"
tokio-stream = "0.1"
thiserror = "2"
tracing = "0.1"
# PTY
portable-pty = "0.9"
# MCP Protocol (official SDK)
rmcp = { version = "0.14", features = ["server"] }
# Schema validation
schemars = "1"
jsonschema = { version = "0.29", default-features = false }
# Builder pattern
derive_builder = "0.20"
# ANSI stripping
strip-ansi-escapes = "0.2"
# Async traits
async-trait = "0.1"
# UUID generation
uuid = { version = "1", features = ["v4"] }
# Directories for executable detection
dirs = "6"
# Temp file handling
tempfile = "3"
[dev-dependencies]
tokio-test = "0.4"
[[bin]]
name = "claude_rs_mcp"
path = "src/bin/claude_rs_mcp.rs"
[features]
default = []
live = [] # Enable live CLI tests