From 58575fc7df6ac13440d93e5f8b74683bcc37cca7 Mon Sep 17 00:00:00 2001 From: Andreas Hartmann Date: Sat, 12 Apr 2025 06:25:42 +0200 Subject: [PATCH] fix(utils): Re-export prost until shortly before the next minor release, just to make sure that subsequent patch releases don't unexpectedly break downstream consumers code. --- zellij-utils/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zellij-utils/src/lib.rs b/zellij-utils/src/lib.rs index 06779d02b2..ec7173905e 100644 --- a/zellij-utils/src/lib.rs +++ b/zellij-utils/src/lib.rs @@ -24,3 +24,6 @@ pub mod downloader; // Requires async_std pub mod ipc; // Requires interprocess #[cfg(not(target_family = "wasm"))] pub mod logging; // Requires log4rs + +// TODO(hartan): Remove this re-export for the next minor release. +pub use ::prost;