-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (45 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
57 lines (45 loc) · 1.33 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
[package]
name = "acp-daemon"
version = "0.2.0"
edition = "2021"
authors = ["ACP Contributors"]
description = "ACP Daemon - HTTP REST API for codebase intelligence"
license = "MIT"
repository = "https://github.com/acp-protocol/acp-daemon"
keywords = ["ai", "daemon", "rest-api", "code-analysis"]
categories = ["development-tools", "command-line-utilities"]
[[bin]]
name = "acpd"
path = "src/main.rs"
[dependencies]
# Core ACP library (use local path for development, version for release)
# acp = { path = "../acp-cli", package = "acp-protocol" }
acp = { version = "0.6.0", package = "acp-protocol" }
# HTTP server
axum = "0.8"
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace"] }
# Async runtime
tokio = { version = "1.48", features = ["full"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# CLI
clap = { version = "4.5", features = ["derive"] }
console = "0.15"
# Process management
daemonize = "0.5"
nix = { version = "0.29", features = ["signal", "process"] }
# File watching
notify = "8.2"
# Time
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
tempfile = "3.15"
reqwest = { version = "0.12", features = ["json"] }