-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1.43 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (40 loc) · 1.43 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
# C2 — a document-first coding-agent app.
# Cargo workspace. Members are added as each milestone lands:
# crates/core (M0/M1) — the shared brain: ACP client, sessions, skills, ...
# crates/tui (M3) — ratatui frontend, links core
# apps/desktop/src-host (M2) — native desktop sidecar, links core
[workspace]
resolver = "2"
members = [
"crates/kernel",
"crates/core",
"crates/tui",
"crates/server",
"apps/desktop/src-host",
]
[workspace.package]
version = "0.0.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/IchenDEV/codeTwo"
rust-version = "1.82"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
async-trait = "0.1"
uuid = { version = "1", features = ["v4", "serde"] }
tracing = "0.1"
# Local crates
codetwo-kernel = { path = "crates/kernel" }
codetwo-core = { path = "crates/core" }
[patch.crates-io]
# 0.2.1 links Ghostty's Windows static archive under the Unix library name. Keep the published
# source revision and normalize the Windows artifact name locally until the upstream fix ships.
libghostty-vt-sys = { path = "vendor/libghostty-vt-sys" }
# Keep local builds useful for backtraces without retaining multi-gigabyte
# debug symbols and incremental state. The test profile inherits these values.
[profile.dev]
debug = "line-tables-only"
incremental = false