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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[]
= "polyc-agent"
= true
= "The agent turn loop: provider + tool-call routing, shared by the control plane and harness."
= true
= true
= true
= true
= true
[]
# Software-system layer — see docs/architecture/. A Component composed
# into Containers; depends inward only (never on a Container).
= "component"
# Logical plane role in the separated state, projection, and query topology
# (#1565, chunk A1) — a different question than `layer` above. The canonical
# policy is arch-capabilities.toml; scripts/check_plane_capabilities.py checks it.
= "shared"
[]
# The shared args canonicalizer (`polyc_crypto::canon`) the approval binding
# compares with — one implementation with the payment proxy, so the two
# binding domains cannot drift.
= { = "=2026.9.0", = "../crypto" }
= { = "=2026.9.0", = "../capability" }
= { = "=2026.9.0", = "../llm" }
= { = true }
= { = "=2026.9.0", = "../proto" }
# Validates a delegated worker's schema-forced final answer against the
# model-supplied `result_schema` (#871). Pure leaf dependency — no layer
# concerns beyond the usual foundation-of-foundations third-party crates.
# Renders a worker's turn-start stamp (#1323) from the parent turn's frozen
# dispatch clock — the same crate + pin `polyc-control-plane` uses for the
# top-level turn-start system message, so the two render identically.
= true
= true
= true
= true
= true
= true
= true
= true
= true
= true
# Needed for the `CURRENT_TOOL_CALL_ID` task-local (scoped around tool
# execution so the harness payment proxy can correlate without an
# `ToolExecutor::execute` signature change). Macros/rt are also used by tests.
= { = true, = ["macros", "rt", "time"] }
[]
# Golden-vector schema (`src/golden_vectors.rs`) shared by this crate's own
# compaction-recall tests and the control-plane pipeline tier (#1298).
# Never a default feature — an integration test binary links the lib without
# `--cfg test`, so a feature is the only way to reach a test-only `pub`
# item; the self-edge below turns it on for this crate's own test builds
# only, never for a normal (non-dev) build.
= []
[]
# Owns the shared, cross-language golden vector JSON this crate's compaction
# recall eval reads — see crates/conformance-vectors.
= { = "=2026.9.0", = "../conformance-vectors" }
# The model-backed tier of the compaction recall eval
# (tests/compaction_recall.rs) drives the real summarizer against a live
# chat-completions-compatible endpoint. Dev-only: the production crate stays
# provider-agnostic behind the `LlmProvider` trait.
= { = "=2026.9.0", = "../llm-openai" }
# Self-edge enabling `test-fixtures` for this crate's OWN test targets
# (tests/compaction_recall.rs) — see the feature's doc comment above.
= { = ".", = ["test-fixtures"] }
[]
= true