kernel/lib.rs
1//! The Hedos kernel: the headless core that discovers, identifies, installs,
2//! and manages local models. Pure logic and the filesystem — no async runtime,
3//! no UI. Higher layers (gateway, cli) are thin shells over this crate.
4
5pub mod artifacts;
6pub mod bench;
7pub mod capabilities;
8pub mod discovery;
9pub mod fs;
10pub mod install;
11pub mod jobs;
12pub mod manifests;
13pub mod persistence;
14pub mod profiles;
15pub mod records;
16pub mod registry;
17pub mod removal;
18pub mod resolution;
19pub mod time;
20
21pub use registry::{Registry, RegistryError};