-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (42 loc) · 886 Bytes
/
Cargo.toml
File metadata and controls
45 lines (42 loc) · 886 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[workspace]
resolver = "2"
members = [
"crates/agent-core",
"crates/bridge",
"crates/cli",
"crates/council",
"crates/directive",
"crates/hierarchy",
"crates/ledger",
"crates/llm-router",
"crates/memory",
"crates/mission",
"crates/pulse",
"crates/realm",
"crates/security",
"crates/tui",
"crates/wasm-sandbox",
]
[workspace.package]
version = "0.0.1"
edition = "2024"
license = "Apache-2.0"
[workspace.dependencies]
iii-sdk = "0.8"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
hmac = "0.12"
hex = "0.4"
uuid = { version = "1", features = ["v4"] }
anyhow = "1"
tracing = "0.1"
tracing-subscriber = "0.3"
chrono = { version = "0.4", features = ["serde"] }
dashmap = "6"
[profile.release]
lto = true
codegen-units = 1
strip = true
opt-level = 3