mnesis 0.1.0

A zero-compromise event-sourcing and CQRS kernel for Rust with maximum compile-time type safety
Documentation
#![allow(
    clippy::unwrap_used,
    clippy::expect_used,
    clippy::panic,
    clippy::shadow_reuse,
    clippy::shadow_same,
    clippy::shadow_unrelated,
    clippy::as_conversions,
    clippy::str_to_string,
    unused_must_use,
    reason = "test harness — relaxed lints for test code; terminal `then_expect_*` fixture assertions intentionally drop the returned fixture"
)]

#[path = "kernel_tests/aggregate_root_tests.rs"]
mod aggregate_root_tests;
#[path = "kernel_tests/architecture_tests.rs"]
mod architecture_tests;
#[path = "kernel_tests/edge_case_tests.rs"]
mod edge_case_tests;
#[path = "kernel_tests/error_id_tests.rs"]
mod error_id_tests;
#[path = "kernel_tests/error_tests.rs"]
mod error_tests;
#[path = "kernel_tests/events_into_iter_tests.rs"]
mod events_into_iter_tests;
#[path = "kernel_tests/events_tests.rs"]
mod events_tests;
#[path = "kernel_tests/integration_test.rs"]
mod integration_test;
#[path = "kernel_tests/newtype_aggregate_tests.rs"]
mod newtype_aggregate_tests;
#[path = "kernel_tests/property_tests.rs"]
mod property_tests;
#[path = "kernel_tests/replay_tests.rs"]
mod replay_tests;
#[path = "kernel_tests/saga_tests.rs"]
mod saga_tests;
#[path = "kernel_tests/security_tests.rs"]
mod security_tests;
#[path = "kernel_tests/static_assertion_tests.rs"]
mod static_assertion_tests;
#[path = "kernel_tests/traits_tests.rs"]
mod traits_tests;
#[path = "kernel_tests/version_tests.rs"]
mod version_tests;