From 3f79bba27a003d3318be67fcb7bed56f07620123 Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Sun, 5 Apr 2026 06:01:24 -0400 Subject: [PATCH] Update json5 Signed-off-by: Kent Overstreet --- Cargo.lock | 7 +++---- Cargo.toml | 2 +- channels/irc/Cargo.toml | 2 +- channels/socat/Cargo.toml | 2 +- channels/tmux/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 621d189..ddea9ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2150,13 +2150,12 @@ dependencies = [ [[package]] name = "json5" -version = "0.4.1" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1" +checksum = "733a844dbd6fef128e98cb4487b887cb55454d92cd9994b1bafe004fabbe670c" dependencies = [ - "pest", - "pest_derive", "serde", + "ucd-trie", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 44a8196..05b1a13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ capnp = "0.20" uuid = { version = "1", features = ["v4"] } serde = { version = "1", features = ["derive"] } serde_json = "1" -json5 = "0.4" +json5 = "1.3" bincode = "1" regex = "1" chrono = "0.4" diff --git a/channels/irc/Cargo.toml b/channels/irc/Cargo.toml index 14e46dd..c339e2f 100644 --- a/channels/irc/Cargo.toml +++ b/channels/irc/Cargo.toml @@ -8,7 +8,7 @@ capnp = "0.20" capnp-rpc = "0.20" dirs = "6" futures = "0.3" -json5 = "0.4" +json5 = "1.3" libc = "0.2" poc-memory = { path = "../.." } rustls = { version = "0.23", default-features = false, features = ["ring", "logging", "std", "tls12"] } diff --git a/channels/socat/Cargo.toml b/channels/socat/Cargo.toml index 357772d..2b5a8cc 100644 --- a/channels/socat/Cargo.toml +++ b/channels/socat/Cargo.toml @@ -8,7 +8,7 @@ capnp = "0.20" capnp-rpc = "0.20" dirs = "6" futures = "0.3" -json5 = "0.4" +json5 = "1.3" poc-memory = { path = "../.." } serde = { version = "1", features = ["derive"] } tokio = { version = "1", features = ["full"] } diff --git a/channels/tmux/Cargo.toml b/channels/tmux/Cargo.toml index 28baea5..8ebeb23 100644 --- a/channels/tmux/Cargo.toml +++ b/channels/tmux/Cargo.toml @@ -10,7 +10,7 @@ dirs = "6" libc = "0.2" scopeguard = "1" futures = "0.3" -json5 = "0.4" +json5 = "1.3" poc-memory = { path = "../.." } serde = { version = "1", features = ["derive"] } tokio = { version = "1", features = ["full"] }