rillflow 0.1.0-alpha.5

Rillflow — a lightweight document + event store for Rust, powered by Postgres.
Documentation
//! Rillflow — document + event store for Rust, powered by Postgres.

pub mod aggregates;
pub mod documents;
mod error;
pub mod events;
pub mod projection_runtime;
pub mod projections;
pub mod query;
pub mod schema;
pub mod snapshotter;
pub mod store;
pub mod subscriptions;
pub mod testing;
pub mod tracing;

pub use aggregates::{Aggregate, AggregateRepository};
pub use error::{Error, Result};
pub use events::EventEnvelope;
pub use events::{Event, Expected};
pub use schema::{SchemaConfig, SchemaManager, SchemaPlan, TenancyMode, TenantSchema};
pub use store::Store;

pub mod prelude {
    pub use crate::{Event, Expected, Result, Store};
}