rill-runtime 0.5.1

Signed-model local runtime and IPC server for RillML.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Independently distributable runtime for RillML.

pub mod package;
pub mod server;

pub use package::{
    LoadedModelPack, ModelPackError, ModelPackInspection, ReleaseIndexError, TrustStore,
    build_signed_model_pack, load_model_pack, sign_release_index, verify_release_index,
};
pub use server::{InvokeHandler, RuntimeEngine};