-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
105 lines (86 loc) · 2.63 KB
/
Cargo.toml
File metadata and controls
105 lines (86 loc) · 2.63 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[workspace]
resolver = "2"
members = [
"crates/harness-core",
"crates/harness-protocol",
"crates/harness-api",
"crates/harness-server",
"crates/harness-agents",
"crates/harness-sandbox",
"crates/harness-gc",
"crates/harness-rules",
"crates/harness-skills",
"crates/harness-exec",
"crates/harness-observe",
"crates/harness-cli",
"crates/harness-workflow",
]
[workspace.package]
version = "0.6.33"
edition = "2021"
license = "MIT"
rust-version = "1.75"
[workspace.dependencies]
# Internal crates
harness-core = { path = "crates/harness-core" }
harness-protocol = { path = "crates/harness-protocol" }
harness-api = { path = "crates/harness-api" }
harness-server = { path = "crates/harness-server" }
harness-agents = { path = "crates/harness-agents" }
harness-sandbox = { path = "crates/harness-sandbox" }
harness-gc = { path = "crates/harness-gc" }
harness-rules = { path = "crates/harness-rules" }
harness-skills = { path = "crates/harness-skills" }
harness-exec = { path = "crates/harness-exec" }
harness-observe = { path = "crates/harness-observe" }
harness-workflow = { path = "crates/harness-workflow" }
# Async runtime
tokio = { version = "1", features = ["full"] }
# Web framework
axum = { version = "0.8", features = ["ws"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "0.8"
# Database
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "chrono", "uuid"] }
# CLI
clap = { version = "4", features = ["derive"] }
# Concurrency
dashmap = "6"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "chrono"] }
opentelemetry = { version = "0.27", features = ["trace", "metrics", "logs"] }
opentelemetry_sdk = { version = "0.27", features = ["trace", "metrics", "logs", "rt-tokio"] }
opentelemetry-otlp = { version = "0.27", features = ["trace", "metrics", "logs", "grpc-tonic", "http-proto", "reqwest-client"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# IDs
uuid = { version = "1", features = ["v4", "serde"] }
# Regex
regex = "1"
# File patterns
glob = "0.3"
shlex = "1.3"
starlark = "0.13"
# Error handling
thiserror = "2"
anyhow = "1"
# Async trait
async-trait = "0.1"
# Futures
futures = "0.3"
tokio-stream = "0.1"
hmac = "0.12"
sha2 = "0.10"
subtle = "2"
# HTTP client (for Anthropic API)
reqwest = { version = "0.12", features = ["json", "stream"] }
# System info (memory pressure monitoring)
sysinfo = { version = "0.32", default-features = false, features = ["system"] }
# Testing
tempfile = "3"