arcature-data 2026.2.0

Arcature high-level data layer: explicit-ownership model/query ergonomics over SeaORM/SQLx, N+1 detection, and migration lint.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Shared test fixture for `arcature-data` integration tests.
//!
//! The fixture entities and the isolated-PostgreSQL test database helper live
//! in dedicated modules — this `mod.rs` only declares them and re-exports the
//! public helpers (AGENTS.md §1: a `mod.rs` declares modules and re-exports;
//! it holds no implementation logic).

#![allow(dead_code)]

pub mod post_entity;
pub mod test_db;
pub mod user_entity;

pub use test_db::*;