From 2f066ce170223c532a406ad528497cc641e2a51c Mon Sep 17 00:00:00 2001 From: Alexandre Janniaux Date: Fri, 15 Nov 2019 13:22:30 +0100 Subject: [PATCH] media_library: fix crate path --- src/media_library.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/media_library.rs b/src/media_library.rs index e79da20..e8e5551 100644 --- a/src/media_library.rs +++ b/src/media_library.rs @@ -2,8 +2,8 @@ // This file is part of vlc-rs. // Licensed under the MIT license, see the LICENSE file. -use sys; -use ::{Instance, MediaList}; +use crate::sys; +use crate::{Instance, MediaList}; pub struct MediaLibrary { pub(crate) ptr: *mut sys::libvlc_media_library_t,