vyre-driver 0.6.3

Driver layer: registry, runtime, pipeline, routing, diagnostics. Substrate-agnostic backend machinery. Part of the vyre GPU compiler.
Documentation
//! Command execution boundary test suite.

const COMMANDS: &str =
    include_str!("../../docs/optimization/COMMAND_EXECUTION_BOUNDARY.toml");

#[test]
fn command_execution_boundary_records_shell_argv_env_cwd_stdin_and_diagnostics() {
    for required in [
        "boundary_id",
        "operation_class",
        "shell_policy",
        "argv_policy",
        "environment_policy",
        "cwd_policy",
        "stdin_policy",
        "diagnostic",
        "never-invoke-through-shell",
        "predeclared-argument-schema-no-string-joining",
    ] {
        assert!(
            COMMANDS.contains(required),
            "command execution boundary must include {required}"
        );
    }
}