-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (43 loc) · 995 Bytes
/
Cargo.toml
File metadata and controls
55 lines (43 loc) · 995 Bytes
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
[package]
name = "lazarus-mcp"
version = "0.3.0"
edition = "2021"
description = "Hot-reload wrapper for AI coding agents"
license = "MIT"
[dependencies]
# JSON-RPC / MCP message handling
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
anyhow = "1"
# Utilities
which = "7"
dirs = "6"
ctrlc = "3"
signal-hook = "0.3"
humantime = "2"
# Async runtime for agent pool
tokio = { version = "1", features = ["full"] }
# UUID for agent IDs
uuid = { version = "1", features = ["v4"] }
# Process monitoring
sysinfo = "0.38"
# TUI
ratatui = "0.30"
ratatui-interact = "0.3"
crossterm = "0.29"
tui-input = "0.15"
# Unix process control
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29", features = ["process", "signal", "user"] }
libc = "0.2"
[profile.release]
lto = true
strip = true
[build-dependencies]
chrono = "0.4"
[dev-dependencies]
tempfile = "3.24.0"