-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (47 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
51 lines (47 loc) · 1.47 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
[workspace]
resolver = "2"
members = [
"crates/terraphim_multi_agent",
"crates/terraphim_agent_registry",
"crates/terraphim_agent_supervisor",
"crates/terraphim_agent_evolution",
"crates/terraphim_agent_messaging",
"crates/terraphim_kg_orchestration",
"crates/terraphim_task_decomposition",
"crates/terraphim_tracker",
"crates/terraphim_orchestrator",
"crates/terraphim_goal_alignment",
]
[workspace.package]
version = "1.20.3"
edition = "2024"
authors = ["Terraphim Team <team@terraphim.ai>"]
documentation = "https://terraphim.ai"
homepage = "https://terraphim.ai"
repository = "https://git.terraphim.cloud/terraphim/terraphim-agents"
license = "Apache-2.0"
readme = "README.md"
[workspace.dependencies]
tokio = { version = "1.0", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
reqwest-middleware = { version = "0.4" }
reqwest-retry = { version = "0.7" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.21", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
async-trait = "0.1"
thiserror = "1.0"
anyhow = "1.0"
log = "0.4"
tracing = "0.1"
tempfile = "3.27"
rustls = { version = "0.23", default-features = false }
rustls-webpki = "0.103.12"
[patch.crates-io]
rustls-webpki = { git = "https://github.com/rustls/webpki.git", tag = "v/0.103.12" }
[profile.release]
panic = "unwind"
lto = false
codegen-units = 1
opt-level = 3