Cleanup up imports/macro_use

This commit is contained in:
Sebastian Dröge 2018-05-01 17:25:49 +03:00
parent 8bc3f12061
commit 51b21ef977
4 changed files with 1 additions and 17 deletions

View file

@ -7,8 +7,6 @@ license = "MIT/Apache-2.0"
[dependencies]
libc = "0.2"
lazy_static = "1.0"
byteorder = "1.0"
glib-sys = { git = "https://github.com/gtk-rs/sys" }
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
glib = { git = "https://github.com/gtk-rs/glib" }

View file

@ -8,7 +8,6 @@
use std::ptr;
use glib;
use glib_ffi;
use gobject_ffi;

View file

@ -6,15 +6,11 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
extern crate byteorder;
pub extern crate glib_sys as glib_ffi;
pub extern crate gobject_sys as gobject_ffi;
#[macro_use]
extern crate lazy_static;
extern crate libc;
#[macro_use]
pub extern crate glib;
#[macro_use]

View file

@ -25,18 +25,9 @@ extern crate gstreamer_base as gst_base;
#[macro_use]
extern crate gobject_subclass;
#[macro_use]
#[macro_use]
#[macro_use]
#[macro_use]
pub use gobject_subclass::anyimpl;
pub use gobject_subclass::properties;
#[macro_use]
#[macro_use]
#[macro_use]
#[macro_use]
pub use gobject_subclass::guard;
pub use gobject_subclass::properties;
pub mod object;