From af4d08da17cd7ae81657cc1b06290f32a19052de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 2 Nov 2018 15:23:29 +0200 Subject: [PATCH] Keep harness::{Ref, RefMut} in the module instead of re-exporting at the top-level --- gstreamer-check/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gstreamer-check/src/lib.rs b/gstreamer-check/src/lib.rs index fbc5c0943..955d78e1b 100644 --- a/gstreamer-check/src/lib.rs +++ b/gstreamer-check/src/lib.rs @@ -35,8 +35,8 @@ pub use auto::*; mod test_clock; -mod harness; -pub use harness::*; +pub mod harness; +pub use harness::Harness; // Re-export all the traits in a prelude module, so that applications // can always "use gst::prelude::*" without getting conflicts