polyc-state-connect 2026.8.3

State plane transport adapter: capability-specific Connect clients and server-trait glue mapping the generated wire types onto the polyc-state kernel — typed outcomes, per-call admission, and the conformance surface the authenticated shell proves itself against (docs/proposals/separated-planes.md).
//! The conformance surface, served and dialed.
//!
//! A test surface, never an authority module. It exists so the
//! implementation-independent suite in `polyc_state::conformance` can run
//! against a loopback listener through the same `run_all`/`run_case` entry
//! points the deterministic in-memory reference runs through — which is what
//! makes "the transport adapter honors the kernel's semantics" a checked
//! claim rather than an asserted one.
//!
//! Authority modules arrive one per later chunk, each mounted only once it
//! passes that same suite.

pub mod backend;
pub mod client;
pub mod service;

pub use backend::{ConformanceBackend, MemoryBackend};
pub use client::{ConformanceClient, Observation};
pub use service::ConformanceSvc;