jiq 3.21.0

Interactive JSON query tool with real-time output
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Stats module for computing and displaying result statistics
//!
//! This module provides fast, character-based parsing to compute statistics
//! about jq query results without full JSON parsing.

pub mod parser;
mod stats_state;
pub mod types;

// Re-export public types
pub use stats_state::StatsState;
pub use stats_state::update_stats_from_app;