-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 1.01 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
[workspace]
resolver = "2"
members = [
"crates/agentic-reality",
"crates/agentic-reality-mcp",
"crates/agentic-reality-cli",
"crates/agentic-reality-ffi",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/agentralabs/agentic-reality"
authors = ["Agentra Labs <contact@agentralabs.tech>"]
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.35", features = ["full"] }
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tempfile = "3"
uuid = { version = "1.0", features = ["v4", "v5", "serde"] }
blake3 = "1.5"
thiserror = "2"
bincode = "1.3"
agentic-sdk = "0.2.0"
agentic-reality = { path = "crates/agentic-reality", version = "0.1.0" }
agentic-reality-mcp = { path = "crates/agentic-reality-mcp", version = "0.1.0" }
agentic-reality-cli = { path = "crates/agentic-reality-cli", version = "0.1.0" }
agentic-reality-ffi = { path = "crates/agentic-reality-ffi", version = "0.1.0" }