From 789f585a7fa9ce96b7e8b0c995306815e464f8d4 Mon Sep 17 00:00:00 2001 From: Ruihang Xia Date: Tue, 29 Apr 2025 01:21:49 +0800 Subject: [PATCH] fix: disable recursion limit in prost (#6010) Signed-off-by: Ruihang Xia --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b0a049bbd1..b567a36a49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -163,7 +163,7 @@ paste = "1.0" pin-project = "1.0" prometheus = { version = "0.13.3", features = ["process"] } promql-parser = { version = "0.5.1", features = ["ser"] } -prost = "0.13" +prost = { version = "0.13", features = ["no-recursion-limit"] } raft-engine = { version = "0.4.1", default-features = false } rand = "0.9" ratelimit = "0.10"