jsonrepair 0.1.0

Fast, low-dependency JSON repair for Rust. Turns 'almost JSON' into valid JSON; supports streaming and writer-based output.
1
2
3
4
use jsonrepair::cli;
fn main() -> Result<(), Box<dyn std::error::Error>> {
    cli::run()
}