From 7f234c88acec5f5233342fa01e0c7ffde51bd049 Mon Sep 17 00:00:00 2001 From: Dave Patrick Caberto Date: Wed, 29 Nov 2023 19:32:44 +0800 Subject: [PATCH] pbutils: make element_properties mod public This makes the builders accessible/nameable. Part-of: --- gstreamer-pbutils/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstreamer-pbutils/src/lib.rs b/gstreamer-pbutils/src/lib.rs index 5da7a592f..f6db5a725 100644 --- a/gstreamer-pbutils/src/lib.rs +++ b/gstreamer-pbutils/src/lib.rs @@ -31,7 +31,7 @@ mod auto; pub use crate::auto::*; #[cfg(feature = "v1_20")] -mod element_properties; +pub mod element_properties; #[cfg(feature = "v1_20")] pub use crate::element_properties::{ElementProperties, ElementPropertiesMapItem};