rill_runtime/lib.rs
1//! Independently distributable runtime for RillML.
2
3pub mod package;
4pub mod server;
5
6pub use package::{
7 LoadedModelPack, ModelPackError, ModelPackInspection, ReleaseIndexError, TrustStore,
8 build_signed_model_pack, load_model_pack, sign_release_index, verify_release_index,
9};
10pub use server::{InvokeHandler, RuntimeEngine};