core: fix crate path

merge-requests/7/merge
Alexandre Janniaux 2019-11-15 13:21:14 +01:00
parent 092377878c
commit 3dd635a5e8
1 changed files with 4 additions and 4 deletions

View File

@ -7,10 +7,10 @@ use std::borrow::Cow;
use std::marker::PhantomData; use std::marker::PhantomData;
use std::ffi::CString; use std::ffi::CString;
use std::i32; use std::i32;
use sys; use libc::{c_void, c_char, c_int};
use ::tools::{to_cstr, from_cstr, from_cstr_ref}; use crate::sys;
use ::libc::{c_void, c_char, c_int}; use crate::tools::{to_cstr, from_cstr, from_cstr_ref};
use ::enums::*; use crate::enums::*;
/// Retrieve libvlc version. /// Retrieve libvlc version.
pub fn version() -> String { pub fn version() -> String {