From f26e52999991bc01a465701da9c000320c065d1f Mon Sep 17 00:00:00 2001 From: Andrei Date: Thu, 13 Nov 2025 00:00:00 +0000 Subject: [PATCH] Re-export `prost` So that `Storable::encode_to_vec()` can be used without requiring users to depend on the exact same prost version as vss-client. --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index f89bb79..1946d1f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,6 +12,7 @@ #![deny(missing_docs)] // Crate re-exports +pub use prost; pub use reqwest; /// Implements a thin-client ([`client::VssClient`]) to access a hosted instance of Versioned Storage Service (VSS).