kmp-adapter-embedded 0.1.9

Embedded edition storage adapters: every KMP kernel port on a single local store file (redb by default, SQLite opt-in)
Documentation
mod context_events;
mod engine;
mod format_version;
mod graph_read;
mod migration;
mod node_detail;
mod portability;
mod projection_write;
mod replay;
mod runtime_state;
mod serdes;
mod snapshot_store;
mod store;
mod telemetry;

pub use format_version::{
    EVENT_FORMAT_VERSION, SUPPORTED_FORMAT_VERSION, StorageEngine, format_version_path,
};
pub use migration::StoreMigrationReceipt;
pub use portability::{BUNDLE_FORMAT_VERSION, BundleHeader, ImportReport};
pub use replay::ProjectionRebuildReport;
pub use store::EmbeddedKernelStore;
pub use telemetry::{
    QualityTelemetryRetention, RedbQualityTelemetryReader, RedbQualityTelemetryWriter,
    quality_telemetry_path,
};