mpegts: Always re-export the contents of the auto module

Pre-1.20 it currently has nothing to re-export and would cause clippy
warnings, but like this it won't be forgotten to update the conditions
if new API is added that is available from older versions.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1414>
This commit is contained in:
Sebastian Dröge 2024-03-24 11:21:45 +02:00
parent 6111663e26
commit 04c840a1d9

View file

@ -22,6 +22,7 @@ pub fn init() {
assert_initialized_main_thread!();
}
// Workaround for https://github.com/gtk-rs/gir/issues/1555.
#[allow(unused_imports)]
mod auto;
#[allow(unused_imports)]
pub use crate::auto::*;