i_edit_json 0.1.0

A lightweight, high-performance tool for editing JSON based on field paths
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! JSON field setting functionality

pub mod core;
pub mod types;
pub mod utils;

/// CLI definitions and handling for set command.
pub mod xcli;

pub use core::*;
pub use types::*;
pub use utils::*;
pub use xcli::*;