//! The store module contains the implementations of the event and snapshot
//! stores.
// The in-memory implementations are compiled when the `in-memory` feature is
// enabled (this is the default).
/// An in-memory event store.
/// An in-memory snapshot store.
// The persistent `sled` implementations are compiled when the `sled-storage`
// feature is enabled.
/// A persistent event store using `sled`.
/// A persistent snapshot store using `sled`.
// SQLx / Postgres implementation compiled when the `postgres-storage` feature
// is enabled.