-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (30 loc) · 782 Bytes
/
Cargo.toml
File metadata and controls
31 lines (30 loc) · 782 Bytes
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
[workspace]
resolver = "2"
members = [
"crates/xprobe-core",
"crates/xprobe-config",
"crates/xprobe-llm",
"crates/xprobe-tool",
"crates/xprobe-skill",
"crates/xprobe-context",
"crates/xprobe-memory",
"crates/xprobe-guardrail",
"crates/xprobe-session",
"crates/xprobe-agent",
"crates/xprobe-mcp",
"crates/xprobe-gateway",
"crates/xprobe-server",
"skills/xprobe-debug-skill",
]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1"
async-trait = "0.1"
toml = "0.8"
proptest = "1"
tracing = "0.1"
tracing-subscriber = "0.3"