hedos-kernel 1.3.1

The hedos kernel: model records, registry, discovery, install planning, and resolution.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Generated outputs: the content-addressed artifact store, its records, gallery
//! arrangement, and provenance rendering. Pure logic and the filesystem — the
//! `ProvenanceArtifactWriter` that bridges the store to the registry is DI glue
//! that lands with the kernel facade.

mod artifact;
mod gallery;
mod provenance;
mod speech_text;
mod store;

pub use artifact::{Artifact, ArtifactDraft};
pub use gallery::{Gallery, GalleryModel, GallerySort};
pub use provenance::Provenance;
pub use speech_text::speakable;
pub use store::{ArtifactStore, ArtifactStoreError};