kime-core 0.0.9

Request and answer types, validation, rendering, confidence, calibration and presets for kime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Request and answer types, validation, state rendering, confidence formulas, rounding,
//! calibration, email cleaning and presets.
//!
//! Everything here is pure computation on the host with no device and no I/O, which is why it is
//! the crate every other one can depend on. See spec/03-api.md, spec/04-semantics.md and
//! spec/06-input.md.

#![forbid(unsafe_code)]

pub mod answer;
pub mod confidence;
pub mod pyjson;
pub mod render;
pub mod request;
pub mod round;