headson 0.17.0

Budget‑constrained JSON preview renderer
Documentation
1
2
3
4
5
6
7
8
9
10
// File-format specific ingest adapters live under this module.
pub mod json;
pub mod text;
pub mod yaml;

// Re-export commonly used helpers for convenience
pub use json::parse_json_one;
pub use json::parse_jsonl_one;
pub use text::parse_text_one_with_mode;
pub use yaml::parse_yaml_one;