-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (51 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
64 lines (51 loc) · 1.4 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
[workspace]
resolver = "2"
members = [
"crates/clawx-core",
"crates/clawx-llm",
"crates/clawx-agent",
"crates/clawx-memory",
"crates/clawx-tools",
"crates/clawx-channels",
"crates/clawx-cli",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
# Internal crates
clawx-core = { path = "crates/clawx-core" }
clawx-llm = { path = "crates/clawx-llm" }
clawx-agent = { path = "crates/clawx-agent" }
clawx-memory = { path = "crates/clawx-memory" }
clawx-tools = { path = "crates/clawx-tools" }
clawx-channels = { path = "crates/clawx-channels" }
# Async runtime
tokio = { version = "1", features = ["full"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# HTTP
reqwest = { version = "0.12", features = ["json", "stream", "rustls-tls"], default-features = false }
# Error handling
thiserror = "2"
anyhow = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Async traits and streams
async-trait = "0.1"
futures = "0.3"
tokio-stream = "0.1"
# Database
rusqlite = { version = "0.32", features = ["bundled"] }
# UUID
uuid = { version = "1", features = ["v4"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# CLI
clap = { version = "4", features = ["derive"] }
# Security
zeroize = { version = "1", features = ["derive"] }