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