From 9f3ae6aa771c5f3e062d064177c545b298b2211f 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 4004106f4..8190b6bb6 100644 --- a/gstreamer-pbutils/src/lib.rs +++ b/gstreamer-pbutils/src/lib.rs @@ -31,7 +31,7 @@ mod auto; pub use crate::auto::{functions::*, *}; #[cfg(feature = "v1_20")] -mod element_properties; +pub mod element_properties; #[cfg(feature = "v1_20")] pub use crate::element_properties::{ElementProperties, ElementPropertiesMapItem};