[[bin]]
name = "rillflow"
path = "src/bin/rillflow.rs"
required-features = ["cli"]
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.clap]
features = ["derive"]
optional = true
version = "4"
[dependencies.indoc]
version = "2"
[dependencies.itertools]
version = "0.13"
[dependencies.serde]
features = ["derive"]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.sqlx]
features = ["runtime-tokio-rustls", "postgres", "uuid", "json", "macros", "chrono"]
version = "0.8.6"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
features = ["macros", "rt-multi-thread"]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
features = ["v4", "serde"]
version = "1"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.testcontainers]
version = "0.25.0"
[[example]]
name = "projection_run_once"
path = "examples/projection_run_once.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[example]]
name = "session_defaults"
path = "examples/session_defaults.rs"
[features]
cli = ["dep:clap"]
default = ["postgres"]
postgres = []
tracing-dashboard = []
[lib]
name = "rillflow"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "asynchronous", "data-structures"]
description = "Rillflow — a lightweight document + event store for Rust, powered by Postgres."
documentation = "https://docs.rs/rillflow"
edition = "2024"
include = ["Cargo.toml", "README.md", "MIGRATIONS.md", "LICENSE-APACHE", "LICENSE-MIT", "sql/**", "src/**", "examples/**", "tests/**"]
keywords = ["postgres", "event-sourcing", "jsonb", "cqrs", "database"]
license = "MIT OR Apache-2.0"
name = "rillflow"
readme = "README.md"
repository = "https://github.com/jordcodes/rillflow"
rust-version = "1.85"
version = "0.1.0-alpha.8"
[[test]]
name = "aggregate_repo"
path = "tests/aggregate_repo.rs"
[[test]]
name = "documents_patch"
path = "tests/documents_patch.rs"
[[test]]
name = "documents_repo"
path = "tests/documents_repo.rs"
[[test]]
name = "envelopes"
path = "tests/envelopes.rs"
[[test]]
name = "idempotency"
path = "tests/idempotency.rs"
[[test]]
name = "integration_postgres"
path = "tests/integration_postgres.rs"
[[test]]
name = "projection_run_loop"
path = "tests/projection_run_loop.rs"
[[test]]
name = "projection_runtime"
path = "tests/projection_runtime.rs"
[[test]]
name = "snapshots"
path = "tests/snapshots.rs"
[[test]]
name = "snapshotter"
path = "tests/snapshotter.rs"
[[test]]
name = "stream_aliases"
path = "tests/stream_aliases.rs"
[[test]]
name = "subscriptions"
path = "tests/subscriptions.rs"