-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (58 loc) · 1.48 KB
/
Copy pathCargo.toml
File metadata and controls
76 lines (58 loc) · 1.48 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[workspace]
resolver = "2"
members = [
"crates/harness-core",
"crates/harness-api",
"crates/harness-agent",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["HomeLab AI Harness Team"]
repository = "https://github.com/homelab-ai-harness/harness"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.40", features = ["full"] }
async-trait = "0.1"
# Web framework
axum = { version = "0.7", features = ["macros"] }
axum-macros = "0.4"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace", "fs"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# HTTP client
reqwest = { version = "0.12", features = ["json", "stream"] }
# LLM client (OpenAI-compatible)
async-openai = "0.28"
# Database
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
# Logging & tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Config
dotenvy = "0.15"
config = "0.14"
# UUID
uuid = { version = "1.10", features = ["v4", "serde"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Encoding
base64 = "0.22"
# Futures
futures = "0.3"
async-stream = "0.3"
# mDNS discovery
mdns-sd = "0.13"
# HTTP types
http = "1.0"
# Secrets (match async-openai's version)
secrecy = "0.10"
# Workspace crates
harness-core = { path = "crates/harness-core" }
harness-agent = { path = "crates/harness-agent" }