mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-26 21:41:03 +00:00
26 lines
990 B
TOML
26 lines
990 B
TOML
[package]
|
|
name="webrtcsink-signalling"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
|
|
license = "MIT"
|
|
description = "GStreamer WebRTC sink signalling server"
|
|
repository = "https://github.com/centricular/webrtcsink/"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
async-std = { version = "1", features = ["unstable", "attributes"] }
|
|
async-native-tls = "0.3"
|
|
async-tungstenite = { version = "0.17", features = ["async-std-runtime", "async-native-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
clap = { version = "3", features = ["derive"] }
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
|
|
tracing-log = "0.1"
|
|
futures = "0.3"
|
|
uuid = { version = "0.8", 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" }
|