Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2021-10-31 13:54:12 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-10-31 18:40:05 +0300
commit0a7d1639e7b33d0bd941997bb88762c35473f0d4 (patch)
tree375d883100bc8e377c6551d1fb32625677923cc4 /generic/threadshare/src/udpsink
parent5ae1f721620e38acb6cf2569e2129b39b2282a7e (diff)
Update to Rust edition 2021 and minimum supported Rust version to 1.56
Diffstat (limited to 'generic/threadshare/src/udpsink')
-rw-r--r--generic/threadshare/src/udpsink/imp.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/generic/threadshare/src/udpsink/imp.rs b/generic/threadshare/src/udpsink/imp.rs
index edf911c7e..18f7e0851 100644
--- a/generic/threadshare/src/udpsink/imp.rs
+++ b/generic/threadshare/src/udpsink/imp.rs
@@ -34,10 +34,8 @@ use crate::runtime::prelude::*;
use crate::runtime::{self, Context, PadSink, PadSinkRef, Task};
use crate::socket::{wrap_socket, GioSocketWrapper};
-use std::convert::TryInto;
use std::mem;
use std::net::{IpAddr, Ipv4Addr, SocketAddr};
-use std::string::ToString;
use std::sync::Mutex as StdMutex;
use std::sync::{Arc, RwLock};
use std::time::Duration;