From af8c23dd730a093ddec617bec9e6f52123745fe3 Mon Sep 17 00:00:00 2001 From: har7an <99636919+har7an@users.noreply.github.com> Date: Sat, 12 Apr 2025 08:05:13 +0000 Subject: [PATCH] fix(utils): Re-export prost (#4133) 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 06779d02..ec717390 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;