kitt_score 0.1.0

Decision engine at the core of Project KITT — in-memory stateful matching with pluggable scoring backends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Immutable schema: interners, attribute types, slot layout.

pub mod attr;
pub mod builder;
pub mod interner;
pub mod layout;
#[allow(clippy::module_inception)]
pub mod schema;

pub use attr::{AttrType, OwnedValue, Value};
pub use builder::SchemaBuilder;
pub use schema::Schema;