mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-02-21 07:06:19 +00:00
webrtc: Rename signaller and protocol crates
This commit is contained in:
parent
25bda89ac8
commit
71ed04d89b
6 changed files with 8 additions and 8 deletions
|
@ -27,7 +27,7 @@ async-tungstenite = { version = "0.17", features = ["async-std-runtime", "async-
|
|||
serde = "1"
|
||||
serde_json = "1"
|
||||
fastrand = "1.0"
|
||||
webrtcsink-protocol = { version = "0.1", path="protocol" }
|
||||
gst_plugin_webrtc_protocol = { version = "0.1", path="protocol", package = "gst-plugin-webrtc-signalling-protocol" }
|
||||
human_bytes = "0.3.1"
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[package]
|
||||
name="webrtcsink-protocol"
|
||||
name="gst-plugin-webrtc-signalling-protocol"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[package]
|
||||
name="webrtcsink-signalling"
|
||||
name="gst-plugin-webrtc-signalling"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
|
||||
|
@ -23,4 +23,4 @@ uuid = { version = "1", features = ["v4"] }
|
|||
thiserror = "1"
|
||||
test-log = { version = "0.2", features = ["trace"], default-features = false }
|
||||
pin-project-lite = "0.2"
|
||||
webrtcsink-protocol = { version = "0.1", path="../protocol" }
|
||||
gst_plugin_webrtc_protocol = { version = "0.1", path="../protocol", package = "gst-plugin-webrtc-signalling-protocol" }
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
use async_std::task;
|
||||
use clap::Parser;
|
||||
use gst_plugin_webrtc_signalling::handlers::Handler;
|
||||
use gst_plugin_webrtc_signalling::server::Server;
|
||||
use tracing_subscriber::prelude::*;
|
||||
use webrtcsink_signalling::handlers::Handler;
|
||||
use webrtcsink_signalling::server::Server;
|
||||
|
||||
use anyhow::Error;
|
||||
use async_native_tls::TlsAcceptor;
|
||||
|
|
|
@ -4,6 +4,7 @@ use anyhow::{anyhow, Error};
|
|||
use anyhow::{bail, Context};
|
||||
use futures::prelude::*;
|
||||
use futures::ready;
|
||||
use gst_plugin_webrtc_protocol as p;
|
||||
use p::PeerStatus;
|
||||
use pin_project_lite::pin_project;
|
||||
use std::collections::{HashMap, HashSet, VecDeque};
|
||||
|
@ -11,7 +12,6 @@ use std::pin::Pin;
|
|||
use std::task::{Context as TaskContext, Poll};
|
||||
use tracing::log::error;
|
||||
use tracing::{info, instrument, warn};
|
||||
use webrtcsink_protocol as p;
|
||||
|
||||
type PeerId = String;
|
||||
|
||||
|
|
|
@ -10,11 +10,11 @@ use gst::glib::prelude::*;
|
|||
use gst::glib::{self, Type};
|
||||
use gst::prelude::*;
|
||||
use gst::subclass::prelude::*;
|
||||
use gst_plugin_webrtc_protocol as p;
|
||||
use once_cell::sync::Lazy;
|
||||
use std::collections::HashMap;
|
||||
use std::path::PathBuf;
|
||||
use std::sync::Mutex;
|
||||
use webrtcsink_protocol as p;
|
||||
|
||||
static CAT: Lazy<gst::DebugCategory> = Lazy::new(|| {
|
||||
gst::DebugCategory::new(
|
||||
|
|
Loading…
Reference in a new issue