//! `wasm-capability-contract` — the capability-sandbox contract (ADR-001):
//! trait/DTO surface only. See `wasm-capability-core` (this repo) for this
//! pattern's own default implementation, and
//! `docs/3-architecture/adr/ADR-001-capability-layer-design.md` at the
//! repo root for the full design this crate is a direct contract for.
//!
//! No `api/` wrapper directory: a `contract` crate has exactly one real
//! layer by construction (`swearchitect#388`) — its own `src/` already
//! is that layer, so nesting everything one level deeper under a
//! same-purpose `api/` folder is redundant, not a second, distinct SEA
//! layer being introduced.
//!
//! `CapabilityDispatcher`/`CapabilityRegistry` keep their real, deliberate
//! signatures (a multi-parameter `dispatch`, a non-`Result` `descriptor`
//! lookup) rather than being forced into `arch`'s generic `*Request`/
//! `*Response` shape — see `docs/known-exceptions.md` for why.
pub use ;
pub use ;