kime_core/lib.rs
1//! Request and answer types, validation, state rendering, confidence formulas, rounding,
2//! calibration, email cleaning and presets.
3//!
4//! Everything here is pure computation on the host with no device and no I/O, which is why it is
5//! the crate every other one can depend on. See spec/03-api.md, spec/04-semantics.md and
6//! spec/06-input.md.
7
8#![forbid(unsafe_code)]
9
10pub mod confidence;
11pub mod pyjson;
12pub mod render;
13pub mod request;
14pub mod round;