From 6ea62ecb4e94b91042deabc1e96880d4bb37ff5d Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 14 Jan 2026 14:36:28 -0500 Subject: [PATCH] fix: make convert_value_raw private (ref #1605) --- src/protobuf/encode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protobuf/encode.rs b/src/protobuf/encode.rs index a907979d2..3eff0f418 100644 --- a/src/protobuf/encode.rs +++ b/src/protobuf/encode.rs @@ -13,7 +13,7 @@ pub struct Options { /// Convert a single raw `Value` into a protobuf `Value`. /// /// Unlike `convert_value`, this ignores any field metadata such as cardinality. -pub fn convert_value_raw( +fn convert_value_raw( value: Value, kind: &Kind, options: &Options,