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:
authorBilal Elmoussaoui <belmouss@redhat.com>2023-07-06 16:43:37 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-07-06 17:50:49 +0300
commitdd2d7d9215494cdaac4a361b9fea8fdf01742153 (patch)
treeee335254ac492f376dbc71abb5d267b5c8f16ac6 /net/raptorq
parent2cc98bf410f687a1779edb86dd259f377cca1c7b (diff)
Use re-exported once_cell
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1268>
Diffstat (limited to 'net/raptorq')
-rw-r--r--net/raptorq/Cargo.toml1
-rw-r--r--net/raptorq/src/raptorqdec/imp.rs2
-rw-r--r--net/raptorq/src/raptorqenc/imp.rs2
3 files changed, 2 insertions, 3 deletions
diff --git a/net/raptorq/Cargo.toml b/net/raptorq/Cargo.toml
index a40181916..1704719cb 100644
--- a/net/raptorq/Cargo.toml
+++ b/net/raptorq/Cargo.toml
@@ -12,7 +12,6 @@ rust-version = "1.66"
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gst-rtp = { package = "gstreamer-rtp", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
-once_cell = "1.0"
raptorq = "1.7"
[dev-dependencies]
diff --git a/net/raptorq/src/raptorqdec/imp.rs b/net/raptorq/src/raptorqdec/imp.rs
index 6c305b95f..4d3496e3e 100644
--- a/net/raptorq/src/raptorqdec/imp.rs
+++ b/net/raptorq/src/raptorqdec/imp.rs
@@ -11,7 +11,7 @@ use gst::subclass::prelude::*;
use gst_rtp::RTPBuffer;
-use once_cell::sync::Lazy;
+use gst::glib::once_cell::sync::Lazy;
use std::collections::BTreeMap;
use std::iter;
diff --git a/net/raptorq/src/raptorqenc/imp.rs b/net/raptorq/src/raptorqenc/imp.rs
index cb37a0a2a..757847596 100644
--- a/net/raptorq/src/raptorqenc/imp.rs
+++ b/net/raptorq/src/raptorqenc/imp.rs
@@ -12,7 +12,7 @@ use gst::subclass::prelude::*;
use gst_rtp::rtp_buffer::*;
use gst_rtp::RTPBuffer;
-use once_cell::sync::Lazy;
+use gst::glib::once_cell::sync::Lazy;
use std::collections::HashSet;
use std::sync::{mpsc, Mutex};