wasm_capability_core/lib.rs
1//! `wasm-capability-core` — this pattern's own default,
2//! zero-external-technology implementation of `CapabilityRegistry` (SEA
3//! `core/`, local ADR-001): `InMemoryCapabilityRegistry`, built on
4//! `svc-registry-adapter`'s real `DefaultRegistry<T: Named>` rather than
5//! hand-rolled storage. A technology-specific `CapabilityEngine`,
6//! `ComponentValidator`, or `CapabilityDispatcher` implementation belongs
7//! in its own `wasm-capability-<technology>-spi` crate in
8//! `wasm-capability-system` instead — this crate wraps no external
9//! technology of its own.
10
11mod capability_registry;
12
13pub use capability_registry::InMemoryCapabilityRegistry;