forked from Dicklesworthstone/vibe_cockpit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
155 lines (131 loc) · 3.87 KB
/
Cargo.toml
File metadata and controls
155 lines (131 loc) · 3.87 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
[workspace]
resolver = "2"
members = [
"crates/vc_config",
"crates/vc_collect",
"crates/vc_store",
"crates/vc_query",
"crates/vc_oracle",
"crates/vc_guardian",
"crates/vc_knowledge",
"crates/vc_alert",
"crates/vc_tui",
"crates/vc_web",
"crates/vc_cli",
"crates/vc_mcp",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["vibe_cockpit contributors"]
license = "MIT"
repository = "https://github.com/Dicklesworthstone/vibe_cockpit"
[workspace.dependencies]
# Async runtime (primary)
# Use the canonical sibling checkout so remote RCH workers resolve the same
# synced path instead of relying on a host-local /dp symlink.
asupersync = { path = "../asupersync" }
asupersync-tokio-compat = { path = "../asupersync/asupersync-tokio-compat" }
# Tokio kept as an explicit compat bridge while crate-local migrations land in
# Phases 2a–2e. This is intentionally broad so each crate can compile until its
# direct Tokio usage is removed.
tokio = { version = "1", features = ["fs", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
# Database
duckdb = { version = "1.4", features = ["bundled"] }
# FrankenSQLite – replaces DuckDB once migration complete
fsqlite = { path = "../frankensqlite/crates/fsqlite", features = ["json"] }
fsqlite-error = { path = "../frankensqlite/crates/fsqlite-error" }
fsqlite-types = { path = "../frankensqlite/crates/fsqlite-types", features = ["native"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "1.0"
# CLI
clap = { version = "4.5", features = ["derive"] }
# TUI
# FrankenTUI – Elm-architecture TUI framework
ftui = { path = "../frankentui/crates/ftui" }
# Web
axum = "0.8"
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "fs", "trace"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Testing
proptest = "1.10"
mockall = "0.14.0"
# Other utilities
uuid = { version = "1.21", features = ["v4", "serde"] }
regex = "1.12"
async-trait = "0.1"
dashmap = "6.1"
futures = "0.3"
rand = "0.10"
# HTTP client
reqwest = { version = "0.13", features = ["json"] }
# SSH
russh = "0.49"
russh-keys = "0.49"
# Internal crates
vc_config = { path = "crates/vc_config" }
vc_collect = { path = "crates/vc_collect" }
vc_store = { path = "crates/vc_store" }
vc_query = { path = "crates/vc_query" }
vc_oracle = { path = "crates/vc_oracle" }
vc_guardian = { path = "crates/vc_guardian" }
vc_knowledge = { path = "crates/vc_knowledge" }
vc_alert = { path = "crates/vc_alert" }
vc_tui = { path = "crates/vc_tui" }
vc_web = { path = "crates/vc_web" }
vc_cli = { path = "crates/vc_cli" }
vc_mcp = { path = "crates/vc_mcp" }
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"
# Binary crate
[package]
name = "vc"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Vibe Cockpit - Agent fleet monitoring and orchestration"
build = "build.rs"
[[bin]]
name = "vc"
path = "src/main.rs"
[[test]]
name = "tui_rendering"
path = "tests/e2e/tui_rendering.rs"
[[test]]
name = "migration_integrity"
path = "tests/e2e/migration_integrity.rs"
[dependencies]
vc_cli.workspace = true
vc_config.workspace = true
asupersync.workspace = true
asupersync-tokio-compat.workspace = true
tokio.workspace = true
clap.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
anyhow.workspace = true
[dev-dependencies]
chrono.workspace = true
duckdb.workspace = true
fsqlite.workspace = true
ftui.workspace = true
serde_json.workspace = true
tempfile = "3"
vc_tui.workspace = true
[build-dependencies]
vergen-gix = { version = "9.1.0", features = ["build", "cargo", "rustc"] }