wasm-capability-core 0.3.0

This pattern's own default, zero-external-technology implementation: InMemoryCapabilityRegistry (SEA core/, local ADR-001).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `wasm-capability-core` — this pattern's own default,
//! zero-external-technology implementation of `CapabilityRegistry` (SEA
//! `core/`, local ADR-001): `InMemoryCapabilityRegistry`, built on
//! `svc-registry-adapter`'s real `DefaultRegistry<T: Named>` rather than
//! hand-rolled storage. A technology-specific `CapabilityEngine`,
//! `ComponentValidator`, or `CapabilityDispatcher` implementation belongs
//! in its own downstream consumer crate instead — this crate wraps no
//! external technology of its own, and has no dependency on, or
//! knowledge of, any consumer.

mod capability;

pub use capability::InMemoryCapabilityRegistry;