gst-plugins-rs/net/webrtc/signalling/Cargo.toml

32 lines
1.1 KiB
TOML
Raw Normal View History

[package]
2022-10-20 09:55:25 +00:00
name = "gst-plugin-webrtc-signalling"
version = "0.9.0"
edition = "2021"
authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
license = "MPL-2.0"
description = "GStreamer WebRTC sink signalling server"
2022-08-16 14:44:41 +00:00
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
2022-10-20 09:55:25 +00:00
rust-version = "1.63"
[dependencies]
anyhow = "1"
async-std = { version = "1", features = ["unstable", "attributes"] }
2022-10-18 10:13:44 +00:00
async-native-tls = "0.4"
async-tungstenite = { version = "0.17", features = ["async-std-runtime", "async-native-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2022-10-18 10:13:44 +00:00
clap = { version = "4", features = ["derive"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
tracing-log = "0.1"
futures = "0.3"
2022-10-18 10:13:44 +00:00
uuid = { version = "1", features = ["v4"] }
thiserror = "1"
test-log = { version = "0.2", features = ["trace"], default-features = false }
pin-project-lite = "0.2"
2022-10-20 09:55:25 +00:00
gst_plugin_webrtc_protocol = { version = "0.9", path="../protocol", package = "gst-plugin-webrtc-signalling-protocol" }
[[bin]]
name = "gst-webrtc-signalling-server"
path = "src/bin/server.rs"