mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-27 05:51:01 +00:00
Cleanup up imports/macro_use
This commit is contained in:
parent
8bc3f12061
commit
51b21ef977
4 changed files with 1 additions and 17 deletions
|
@ -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" }
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
|
||||
use std::ptr;
|
||||
|
||||
use glib;
|
||||
use glib_ffi;
|
||||
use gobject_ffi;
|
||||
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue