Don't re-export everything from the tags module

All the tags are supposed to be used via gst::tags::Title, etc to
prevent conflicts.
This commit is contained in:
Sebastian Dröge 2017-08-11 15:32:28 +03:00
parent c36c8189ce
commit 93cc21112c

View file

@ -61,7 +61,7 @@ pub use structure::{Structure, StructureRef};
pub mod caps;
pub use caps::{Caps, CapsRef};
pub mod tags;
pub use tags::*;
pub use tags::{Tag, TagList, TagListRef};
pub mod buffer;
pub use buffer::{Buffer, BufferMap, BufferRef, MappedBuffer};
pub mod sample;