Expand description
Error type for pack-manifest parsing.
All Stage-A parse failures surface as PackParseError. Variants carry
enough context (offending key, value, depth, etc.) to produce actionable
messages without the caller needing to re-read the YAML.
Enums§
- Pack
Parse Error - Errors produced by
crate::pack::parseand related entry points.
Constants§
- MAX_
REQUIRE_ DEPTH - Maximum nesting depth for
require/whenpredicate trees. Exceeding this limit yieldsPackParseError::RequireDepthExceeded; the cap exists to bound recursive evaluation cost at execute time.