From 07f0d4ece70d31125b172b50f99500d934466653 Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 12 Nov 2025 00:00:00 +0000 Subject: [PATCH] Re-export `prost::Message` So that `Storable::encode_to_vec()` can be used without requiring users to depend on the exact same prost version as vss-client. --- src/util/storable_builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/storable_builder.rs b/src/util/storable_builder.rs index dbf8606..26742d2 100644 --- a/src/util/storable_builder.rs +++ b/src/util/storable_builder.rs @@ -1,5 +1,5 @@ use crate::types::{EncryptionMetadata, PlaintextBlob, Storable}; -use ::prost::Message; +pub use ::prost::Message; use chacha20_poly1305::{ChaCha20Poly1305, Key, Nonce};