knowledge-base-extension-framework 0.1.0

Static extension contracts for the file-based knowledge base
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Contracts and runtime support for statically composed knowledge-base extensions.
//!
//! Start with [`contracts`] to define an extension, use [`registry`] to select
//! the extensions enabled for a repository, and use [`bindings`] to supply the
//! repository-specific ontology identifiers they need.

#![forbid(unsafe_code)]

pub mod bindings;
pub mod contracts;
pub mod error;
pub mod manifest;
pub mod ontology;
pub mod registry;