mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-13 13:51:05 +00:00
86 lines
2 KiB
TOML
86 lines
2 KiB
TOML
[package]
|
|
name = "gst-plugin-threadshare"
|
|
version.workspace = true
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
|
license = "LGPL-2.1-or-later"
|
|
description = "GStreamer Threadshare Plugin"
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
async-task = "4.3.0"
|
|
cfg-if = "1"
|
|
concurrent-queue = "2.2.0"
|
|
flume = "0.11"
|
|
futures = "0.3.28"
|
|
gio.workspace = true
|
|
gst.workspace = true
|
|
gst-audio.workspace = true
|
|
gst-net.workspace = true
|
|
gst-rtp.workspace = true
|
|
once_cell.workspace = true
|
|
pin-project-lite = "0.2.0"
|
|
polling = "3.1.0"
|
|
rand = "0.8"
|
|
rustix = { version = "0.38.2", default-features = false, features = ["std", "fs", "net"] }
|
|
slab = "0.4.7"
|
|
socket2 = {features = ["all"], version = "0.5"}
|
|
waker-fn = "1.1"
|
|
|
|
# Used by examples
|
|
clap = { version = "4", features = ["derive"], optional = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3.9", features = ["winsock2", "processthreadsapi"] }
|
|
|
|
[dev-dependencies]
|
|
gst-check.workspace = true
|
|
gst-app.workspace = true
|
|
|
|
[lib]
|
|
name = "gstthreadshare"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[[example]]
|
|
name = "ts-benchmark"
|
|
path = "examples/benchmark.rs"
|
|
|
|
[[example]]
|
|
name = "udpsrc-benchmark-sender"
|
|
path = "examples/udpsrc_benchmark_sender.rs"
|
|
|
|
[[example]]
|
|
name = "tcpclientsrc-benchmark-sender"
|
|
path = "examples/tcpclientsrc_benchmark_sender.rs"
|
|
|
|
[[example]]
|
|
name = "ts-standalone"
|
|
path = "examples/standalone/main.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper.workspace = true
|
|
cc = "1.0.38"
|
|
pkg-config = "0.3.15"
|
|
|
|
[features]
|
|
static = []
|
|
capi = []
|
|
# Adds performance counters used by benchmarking tools.
|
|
tuning = []
|
|
doc = ["gst/v1_18"]
|
|
|
|
[package.metadata.capi]
|
|
min_version = "0.9.21"
|
|
|
|
[package.metadata.capi.header]
|
|
enabled = false
|
|
|
|
[package.metadata.capi.library]
|
|
install_subdir = "gstreamer-1.0"
|
|
versioning = false
|
|
import_library = false
|
|
|
|
[package.metadata.capi.pkg_config]
|
|
requires_private = "gstreamer-1.0, gstreamer-net-1.0, gstreamer-rtp-1.0, gobject-2.0, glib-2.0, gmodule-2.0"
|