-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (33 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (33 loc) · 1.01 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
[package]
name = "servling"
version = "0.1.0"
edition = "2021"
description = "Core AI agent trait and CLI engine"
[lib]
path = "src/lib.rs"
[dependencies]
# Error handling
anyhow = "1.0"
# Off-load blocking child-process spawns to a dedicated threadpool
# so the caller's async executor isn't stalled for the duration of
# a CLI invocation.
blocking = "1.6"
# ACP session transport
agent-client-protocol = { version = "0.10.2", features = ["unstable_session_model"] }
async-trait = "0.1"
futures = "0.3"
tokio = { version = "1.48", features = ["macros", "process", "rt", "sync", "time", "io-std", "io-util"] }
tokio-util = { version = "0.7", features = ["compat"] }
# JSON serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# File system operations
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.11", features = ["v4", "serde"] }
# Temporary files
tempfile = "3.15"
# Logging
log = "0.4"
# Pattern matching for token parsing
regex = "1.11.1"
lazy_static = "1.5.0"