Aggregateless, Multi-Stream Event-Sourcing for Rust
  • Rust 98%
  • Shell 1.2%
  • PLpgSQL 0.5%
  • Nix 0.3%
Find a file
release-plz-bot f7ec7ecd0d
All checks were successful
Publish to crates.io / Publish Workspace Crates (push) Successful in 2m2s
Release PR / Create/Update Release PR (push) Has been skipped
chore(release): v1.0.1 (#427)
2026-06-15 10:51:04 -07:00
.cargo feat: add load-testing/stress-testing suite (#370) 2026-04-15 12:41:12 -07:00
.claude docs: align all documentation with the 1.0 API (#424) 2026-06-14 21:04:58 -07:00
.forgejo fix(release-plz): supersede release PR instead of force-pushing (#395) 2026-06-12 23:24:10 -07:00
blueprints docs: align all documentation with the 1.0 API (#424) 2026-06-14 21:04:58 -07:00
docs docs: align all documentation with the 1.0 API (#424) 2026-06-14 21:04:58 -07:00
eventcore chore(release): v1.0.1 (#427) 2026-06-15 10:51:04 -07:00
eventcore-bench feat(eventcore)!: streaming reads for read_stream (#364) (#414) 2026-06-13 09:18:55 -07:00
eventcore-demo feat(eventcore-demo): demo application with PostgreSQL backend (#260) (#412) 2026-06-13 08:34:47 -07:00
eventcore-examples chore(release): v1.0.1 (#427) 2026-06-15 10:51:04 -07:00
eventcore-fs chore(release): v1.0.1 (#427) 2026-06-15 10:51:04 -07:00
eventcore-macros chore(release): v1.0.1 (#427) 2026-06-15 10:51:04 -07:00
eventcore-memory chore(release): v1.0.1 (#427) 2026-06-15 10:51:04 -07:00
eventcore-postgres chore(release): v1.0.1 (#427) 2026-06-15 10:51:04 -07:00
eventcore-sqlite chore(release): v1.0.1 (#427) 2026-06-15 10:51:04 -07:00
eventcore-stress feat(eventcore)!: streaming reads for read_stream (#364) (#414) 2026-06-13 09:18:55 -07:00
eventcore-testing chore(release): v1.0.1 (#427) 2026-06-15 10:51:04 -07:00
eventcore-types chore(release): v1.0.1 (#427) 2026-06-15 10:51:04 -07:00
scripts chore: configure claude code (#134) 2025-10-13 00:39:13 +00:00
.env.example refactor(eventcore-postgres): replace testcontainers with docker-compose (#224) 2025-12-27 21:39:26 +00:00
.gitattributes chore: update SDLC setup to v1.2.1 (#296) 2026-02-17 08:18:07 -08:00
.gitignore chore: migrate CI and metadata from GitHub to Forgejo (#385) 2026-06-12 16:53:35 -07:00
.pre-commit-config.yaml feat(postgres): add PostgreSQL event store implementation (#169) 2025-12-03 19:04:03 -08:00
AGENTS.md docs: align all documentation with the 1.0 API (#424) 2026-06-14 21:04:58 -07:00
Cargo.lock chore(release): v1.0.1 (#427) 2026-06-15 10:51:04 -07:00
Cargo.toml chore(release): v1.0.1 (#427) 2026-06-15 10:51:04 -07:00
CLAUDE.md docs: align all documentation with the 1.0 API (#424) 2026-06-14 21:04:58 -07:00
CODE_OF_CONDUCT.md I-001: Single-Stream Command Execution (End-to-End) (#137) 2025-10-22 16:02:56 -07:00
COMPLIANCE_CHECKLIST.md docs: align all documentation with the 1.0 API (#424) 2026-06-14 21:04:58 -07:00
CONTRIBUTING.md docs: align all documentation with the 1.0 API (#424) 2026-06-14 21:04:58 -07:00
docker-compose.yml chore: migrate CI and metadata from GitHub to Forgejo (#385) 2026-06-12 16:53:35 -07:00
event_core.png Create documentation website with mdBook 2025-07-04 23:21:59 -07:00
flake.lock feat(eventcore-fs): local-ingestion cursor for projections (#398) 2026-06-13 06:31:57 -07:00
flake.nix chore: adopt han plugins, blueprints, and project conventions (#330) 2026-04-09 18:12:17 +00:00
LICENSE Create LICENSE 2025-06-28 14:34:57 -07:00
README.md docs: align all documentation with the 1.0 API (#424) 2026-06-14 21:04:58 -07:00
release-plz.toml chore: migrate CI and metadata from GitHub to Forgejo (#385) 2026-06-12 16:53:35 -07:00
REVIEW.md chore: add refactor-sequencing guardrail and review check (#354) 2026-04-12 15:21:21 +00:00
rust-toolchain.toml Cleanup (#131) 2025-10-12 09:04:50 -07:00
SECURITY.md docs: align all documentation with the 1.0 API (#424) 2026-06-14 21:04:58 -07:00
skills-lock.json chore: migrate from marvin-sdlc to agent-skills bootstrap (#303) 2026-02-22 04:52:30 +00:00

EventCore

CI License: MIT

⚠️ EXPERIMENTAL - NOT READY FOR USE

This project is in early development. APIs are unstable and subject to breaking changes. The library is not yet published to crates.io, and referenced packages/examples may be incomplete or non-existent.

Do not use this in production or depend on it for any real projects.

A type-safe event sourcing library implementing multi-stream event sourcing with dynamic consistency boundaries - commands that can atomically read from and write to multiple event streams.

Why EventCore?

Traditional event sourcing forces you into rigid aggregate boundaries. EventCore breaks free with:

  • Multi-stream commands: Read and write multiple streams atomically
  • Type-safe by design: Illegal states are unrepresentable
  • Dynamic stream discovery: Commands can discover streams at runtime
  • Zero boilerplate: No aggregate classes, just commands and events

Quick Start

Note: EventCore is not yet published to crates.io (see the banner above). The snippet below shows how dependencies will be declared and matches the current API.

# Cargo.toml
[dependencies]
eventcore = "1.0"
# The in-memory store used below is a separate crate:
eventcore-memory = "1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }

The in-memory store lives in the eventcore-memory crate. The PostgreSQL and SQLite backends are enabled via the postgres and sqlite features on the eventcore crate.

use eventcore::{
    Command, CommandError, CommandLogic, Event, NewEvents, RetryPolicy,
    StreamId, execute,
};
use eventcore_memory::InMemoryEventStore;
use serde::{Deserialize, Serialize};

// Define your events
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
enum BankAccountEvent {
    MoneyDeposited { account_id: StreamId, amount: u64 },
}

impl Event for BankAccountEvent {
    fn stream_id(&self) -> &StreamId {
        match self {
            Self::MoneyDeposited { account_id, .. } => account_id,
        }
    }
    fn event_type_name() -> &'static str { "BankAccountEvent" }
}

// Define your command with #[derive(Command)]
#[derive(Command)]
struct DepositMoney {
    #[stream]
    account_id: StreamId,
    amount: u64,
}

impl CommandLogic for DepositMoney {
    type Event = BankAccountEvent;
    type State = ();

    // apply takes OWNED state, returns OWNED state (pure fold)
    fn apply(&self, state: Self::State, _event: &Self::Event) -> Self::State {
        state
    }

    // handle is SYNC, returns Result<NewEvents<...>, CommandError>
    fn handle(&self, _state: Self::State) -> Result<NewEvents<Self::Event>, CommandError> {
        Ok(vec![BankAccountEvent::MoneyDeposited {
            account_id: self.account_id.clone(),
            amount: self.amount,
        }].into())
    }
}

// execute() is a free function — no CommandExecutor needed
let store = InMemoryEventStore::new();
let command = DepositMoney {
    account_id: StreamId::try_new("account-alice")?,
    amount: 10000,
};
execute(&store, command, RetryPolicy::new()).await?;

Key Features

Type-Safe Stream Access

The #[derive(Command)] macro automatically generates boilerplate from #[stream] fields:

#[derive(Command)]
struct TransferMoney {
    #[stream]
    from_account: StreamId,
    #[stream]
    to_account: StreamId,
    amount: Money,
}

// Automatically generates:
// - impl CommandStreams for TransferMoney, whose stream_declarations()
//   returns the StreamIds from every #[stream] field (here from_account
//   and to_account), establishing the command's atomic consistency boundary

Dynamic Stream Discovery

Some commands only learn about additional streams after inspecting state (e.g., an order references a payment-method stream). Implement StreamResolver<State> and return Some(self) from CommandLogic::stream_resolver() to opt in:

impl CommandLogic for ProcessPayment {
    type State = CheckoutState;
    type Event = CheckoutEvent;

    fn stream_resolver(&self) -> Option<&(dyn StreamResolver<Self::State> + Sync)> {
        Some(self)
    }

    // apply + handle omitted
}

impl StreamResolver<CheckoutState> for ProcessPayment {
    fn discover_related_streams(&self, state: &CheckoutState) -> Vec<StreamId> {
        state.payment_method_stream.clone().into_iter().collect()
    }
}

The executor deduplicates IDs returned by discover_related_streams, reads each stream exactly once, and includes every visited stream in the same optimistic concurrency check as the statically declared streams.

Built-in Concurrency Control

Optimistic locking prevents conflicts automatically. Just execute your commands - version checking and retries are handled transparently.

Architecture

eventcore/              # Core library - re-exports types, macros, and optional adapters
eventcore-types/        # Shared vocabulary - traits and types (StreamId, Event, EventStore)
eventcore-macros/       # Derive macros (re-exported by eventcore)
eventcore-postgres/     # PostgreSQL adapter (enabled via feature flag)
eventcore-sqlite/       # SQLite adapter with optional SQLCipher encryption
eventcore-memory/       # In-memory store for tests and development
eventcore-fs/           # File-based git-mergeable store (FileEventStore::open)
eventcore-testing/      # Contract tests, EventCollector, TestScenario
eventcore-examples/     # Integration test examples

Feature Flags

Feature Default Description
macros Yes Re-exports #[derive(Command)] from eventcore-macros
postgres No Re-exports PostgresEventStore from eventcore-postgres
sqlite No Re-exports SqliteEventStore from eventcore-sqlite
# Default (includes macros)
eventcore = "1.0"

# With PostgreSQL adapter
eventcore = { version = "1.0", features = ["postgres"] }

# Without macros (rare - for minimal builds)
eventcore = { version = "1.0", default-features = false }

Examples

See eventcore-examples/tests/ for working integration test examples (banking-style deposit/withdraw commands):

  • Multi-stream atomic transfers (multi_stream_atomic_test): atomic reads and writes across multiple account streams
  • Retry policy (retry_policy_test): optimistic-concurrency retry behavior
  • BDD scenario (scenario_test): given/when/then-style command flows
  • Single-stream command (single_stream_command_test): the minimal single-stream case

Documentation

Development

# Setup
nix develop              # Enter dev environment
docker-compose up -d     # Start PostgreSQL

# Test
cargo nextest run --workspace  # Fast parallel tests
cargo test --workspace         # Fallback test runner

Contributing

EventCore follows strict type-driven development. See CLAUDE.md for our development philosophy.

License

Licensed under the MIT License. See LICENSE for details.