corpora-core 0.1.0

Core domain types, immutable graph, and event bus for the corpora docs validator.
Documentation
//! Pure domain core: the schema as types, the immutable [`Graph`], the event bus
//! ([`Event`], [`Subscriber`], [`Context`]), and [`Diagnostic`]. No IO — see
//! `corpora-engine` for the filesystem/git edges.

pub mod model;
pub mod diagnostic;
pub mod config;
pub mod event;
pub mod graph;
pub mod oracle;
pub mod subscriber;

pub use model::*;
pub use diagnostic::*;
pub use config::*;
pub use event::*;
pub use graph::{Cite, Graph, Relation};
pub use oracle::{NullOracle, OracleStatus, RevisionOracle};
pub use subscriber::{Context, Interest, Subscriber};