-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (40 loc) · 1.26 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (40 loc) · 1.26 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
[workspace]
resolver = "2"
members = [
"src",
"src/canon",
"lib/common",
"lib/api",
"lib/event",
"lib/storage",
"lib/policy",
"lib/soc",
"lib/egress",
"lib/tool-broker-core",
"lib/tool-broker-connectors",
"bins/aegis-node-sensor",
"bins/aegis-cage-runner",
"bins/aegis-egress-proxy",
"bins/aegis-llm-gateway",
"bins/aegis-tool-broker",
]
# src/fuzz has its own cargo-fuzz-managed build (ASan/sancov instrumentation,
# a separate target dir) and must never be built by `cargo build/test
# --workspace`; Cargo treats any Cargo.toml nested under the workspace root
# as an implicit member unless explicitly excluded.
exclude = ["src/fuzz"]
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.8", features = ["v4", "v5", "serde"] }
tokio = { version = "1.38", features = ["full"] }
tracing = "0.1"
sqlx = { version = "0.8.1", features = ["runtime-tokio", "sqlite", "uuid", "chrono", "json"] }
thiserror = "1.0"
sha2 = "0.10"
hmac = "0.12"
axum = { version = "0.7.5", features = ["macros", "ws"] }
cedar-policy = "3.2.1"
utoipa = { version = "4.2", features = ["axum_extras", "uuid", "chrono"] }
crc32c = "=0.6.8"