diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-10-21 14:17:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-21 14:17:08 -0400 |
commit | 39fb55096ec12c8c18d15dff63a750a22169e3e6 (patch) | |
tree | 1e93aae8a6b35f0d6341941e204d583a218eef93 /Cargo.toml | |
parent | 9fe2bf42dc584779cc43f0ec15a5a3d6dddca283 (diff) |
fix(install): better json editing (#26450)
1. Respects the formatting of the file (ex. keeps four space indents or
tabs).
2. Handles editing of comments.
3. Handles trailing commas.
4. Code is easier to maintain.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index 9f15d03a5..92dd604e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -137,7 +137,7 @@ hyper-util = { version = "=0.1.7", features = ["tokio", "client", "client-legacy hyper_v014 = { package = "hyper", version = "0.14.26", features = ["runtime", "http1"] } indexmap = { version = "2", features = ["serde"] } ipnet = "2.3" -jsonc-parser = { version = "=0.23.0", features = ["serde"] } +jsonc-parser = { version = "=0.26.1", features = ["serde"] } lazy-regex = "3" libc = "0.2.126" libz-sys = { version = "1.1.20", default-features = false } |