rillflow 0.1.0-alpha.2

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

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

pub use error::{Error, Result};
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};
}