-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (41 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
47 lines (41 loc) · 1.23 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
[workspace]
resolver = "2"
members = [
"crates/clickweave-core",
"crates/clickweave-engine",
"crates/clickweave-llm",
"crates/clickweave-mcp",
"src-tauri",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
rust-version = "1.85"
[workspace.dependencies]
# Shared dependencies
base64 = "0.22"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
thiserror = "2.0"
uuid = { version = "1.0", features = ["v4", "serde"] }
tokio = { version = "1.0", features = ["full"] }
tokio-util = { version = "0.7", features = ["rt"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
# Internal crates
clickweave-core = { path = "crates/clickweave-core" }
clickweave-engine = { path = "crates/clickweave-engine" }
clickweave-llm = { path = "crates/clickweave-llm" }
clickweave-mcp = { path = "crates/clickweave-mcp" }
[profile.dev]
debug = "line-tables-only"
split-debuginfo = "unpacked"
[profile.dev.package."*"]
debug = false
[profile.dev.build-override]
opt-level = 3