From 71643a2dff86a2119363270a0a6c49a2937b4f9e Mon Sep 17 00:00:00 2001 From: Runji Wang Date: Fri, 20 Oct 2023 17:39:22 +0800 Subject: [PATCH] update jsonbb to fix parsing with trailing characters Signed-off-by: Runji Wang --- Cargo.lock | 2 +- src/common/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5008108242dd2..358078187355a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4115,7 +4115,7 @@ dependencies = [ [[package]] name = "jsonbb" version = "0.1.0" -source = "git+https://github.com/risingwavelabs/jsonbb.git?rev=d48c3e9#d48c3e9cfd19bc106c1df8df3de096c1f8e5dab0" +source = "git+https://github.com/risingwavelabs/jsonbb.git?rev=493fa2f#493fa2fe864c6b5789dc6014969f820679dfef09" dependencies = [ "bytes", "serde", diff --git a/src/common/Cargo.toml b/src/common/Cargo.toml index 16919c02cfb32..87110a82f5c18 100644 --- a/src/common/Cargo.toml +++ b/src/common/Cargo.toml @@ -49,7 +49,7 @@ hyper = "0.14" hytra = { workspace = true } itertools = "0.11" itoa = "1.0" -jsonbb = { git = "https://github.com/risingwavelabs/jsonbb.git", rev = "d48c3e9" } +jsonbb = { git = "https://github.com/risingwavelabs/jsonbb.git", rev = "493fa2f" } lru = { git = "https://github.com/risingwavelabs/lru-rs.git", rev = "cb2d7c7" } memcomparable = { version = "0.2", features = ["decimal"] } num-integer = "0.1"