mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-13 05:41:05 +00:00
31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
[package]
|
|
name = "gst-plugin-webrtc-signalling"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
|
|
license = "MPL-2.0"
|
|
description = "GStreamer WebRTC sink signalling server"
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
tokio = { version = "1", features = ["fs", "io-util", "macros", "rt-multi-thread", "time"] }
|
|
tokio-native-tls = "0.3.0"
|
|
async-tungstenite = { version = "0.27", features = ["tokio-runtime", "tokio-native-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
|
|
tracing-log = "0.2"
|
|
futures = "0.3"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
thiserror = "1"
|
|
test-log = { version = "0.2", features = ["trace"], default-features = false }
|
|
pin-project-lite = "0.2"
|
|
gst_plugin_webrtc_protocol = { path="../protocol", package = "gst-plugin-webrtc-signalling-protocol" }
|
|
|
|
[[bin]]
|
|
name = "gst-webrtc-signalling-server"
|
|
path = "src/bin/server.rs"
|