kaish-kernel 0.16.0

Core kernel for kaish: lexer, parser, interpreter, and runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! ExecResult and output types — re-exported from kaish-types.
//!
//! The type definitions live in `kaish-types` (a leaf crate with no async deps).
//! This module re-exports them so `crate::interpreter::ExecResult` continues to work.

pub use kaish_types::bytes::hex_dump;
pub use kaish_types::output::{apply_output_format, EntryType, OutputData, OutputFormat, OutputNode};
pub use kaish_types::result::{
    json_to_value, json_to_value_no_envelope, value_to_json, ExecResult,
    OutputPayload,
};