Skip to main content

concinnity_host/
lib.rs

1//! concinnity-host: what the engine needs from the machine it runs on.
2//!
3//! Two charters, sharing nothing but that dependency:
4//!
5//!   - [`store`]: the project's state tree on disk, and the reads over it.
6//!   - [`thread`]: the worker pool and the per-thread interner.
7//!
8//! They stay separate all the way down. Nothing in `store` reaches into
9//! `thread`, and nothing in `thread` names a path.
10
11pub mod store;
12pub mod thread;