crtx-store 0.1.0

SQLite persistence: migrations, repositories, transactions.
Documentation
//! Thin SQLite repositories over the MVP store schema.

pub mod audit;
pub mod authority;
pub mod context_packs;
pub mod contradictions;
pub mod decay_jobs;
pub mod embeddings;
pub mod episodes;
pub mod events;
pub mod memories;
pub mod principles;
pub mod traces;

pub use audit::{AuditEntry, AuditRepo};
pub use authority::{
    AuthorityRepo, KeyTimelineRecord, PrincipalTimelineRecord, TemporalAuthorityQuery,
};
pub use context_packs::{ContextPackRecord, ContextPackRepo};
pub use contradictions::{ContradictionRecord, ContradictionRepo, ContradictionStatus};
pub use decay_jobs::{DecayJobRecord, DecayJobRepo, SUMMARY_METHOD_NONE_WIRE};
pub use embeddings::{EmbedRecord, EmbeddingRepo, EMBEDDING_ENCRYPTION_KIND_NONE};
pub use episodes::{EpisodeRecord, EpisodeRepo};
pub use events::EventRepo;
pub use memories::{
    cross_session_weak_negative_status, CrossSessionWeakNegativeStatus, MemoryAcceptanceAudit,
    MemoryCandidate, MemoryRecord, MemoryRepo, MemorySessionUse, OutcomeMemoryRelationRecord,
    CROSS_SESSION_USE_REPEATED_UNVALIDATED_WEAK_NEGATIVE_INVARIANT,
    CROSS_SESSION_USE_WEAK_NEGATIVE_THRESHOLD,
    OUTCOME_UTILITY_TO_TRUTH_PROMOTION_UNAUTHORIZED_INVARIANT,
};
pub use principles::{
    DoctrinePromotion, DoctrineRecord, PrincipleCandidateRow, PrincipleRecord, PrincipleRepo,
};
pub use traces::TraceRepo;