jsonc 0.1.0

JSON with Comments (JSONC) parsing and manipulation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "jsonc"
version = "0.1.0"
edition = "2024"
description = "JSON with Comments (JSONC) parsing and manipulation"
license = "MIT"

[dependencies]
anyhow = "1.0"
jsonc-parser = { version = "0.26", features = ["cst", "serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.40", features = ["fs"] }

[dev-dependencies]
tempfile = "3.13"