mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-10-31 22:59:14 +00:00
Fix build warnings after update to Rust 1.77
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1413>
This commit is contained in:
parent
676e41064b
commit
e2e38d9494
2 changed files with 4 additions and 2 deletions
|
@ -22,5 +22,6 @@ pub fn init() {
|
|||
assert_initialized_main_thread!();
|
||||
}
|
||||
|
||||
// Workaround for https://github.com/gtk-rs/gir/issues/1555.
|
||||
#[allow(unused_imports)]
|
||||
mod auto;
|
||||
pub use crate::auto::*;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
use glib::{prelude::*, translate::*};
|
||||
use glib::prelude::*;
|
||||
use glib::translate::FromGlibPtrBorrow;
|
||||
|
||||
use crate::RTPBaseDepayload;
|
||||
|
||||
|
|
Loading…
Reference in a new issue