kmp-embedded 0.1.1

Embedded edition composition root: the KMP kernel in-process over the redb store
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Embedded edition composition root (ADR-013): wires the application
//! services over the redb store with synchronous in-process projection, and
//! resolves the data directory per the ADR-012 contract. No transport, no
//! infrastructure clients.

mod data_dir;
mod kernel;
mod memory_api;

pub use data_dir::{DATA_DIR_ENV, ResolvedDataDir, resolve_data_dir, resolve_data_dir_from_env};
pub use kernel::{EmbeddedKernel, EmbeddedMemoryService};
pub use kmp_adapter_embedded::SUPPORTED_FORMAT_VERSION;