2018-03-06 09:38:27 +00:00
|
|
|
[package]
|
|
|
|
name = "gst-plugin-threadshare"
|
2021-07-09 10:49:33 +00:00
|
|
|
version = "0.8.0"
|
2018-03-06 09:38:27 +00:00
|
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
2020-04-16 11:06:34 +00:00
|
|
|
license = "LGPL-2.1-or-later"
|
2019-06-03 10:53:58 +00:00
|
|
|
description = "Threadshare Plugin"
|
|
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
2021-10-31 10:54:12 +00:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.56"
|
2018-03-06 09:38:27 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2018-11-30 17:38:25 +00:00
|
|
|
libc = "0.2"
|
2021-05-13 06:50:08 +00:00
|
|
|
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
|
2021-07-20 19:49:24 +00:00
|
|
|
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2019-11-24 20:12:40 +00:00
|
|
|
gst-net = { package = "gstreamer-net", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
|
|
gst-rtp = { package = "gstreamer-rtp", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2020-10-17 09:07:30 +00:00
|
|
|
pin-project = "1"
|
2020-05-15 21:37:56 +00:00
|
|
|
once_cell = "1"
|
2021-11-17 13:45:58 +00:00
|
|
|
tokio = { git = "https://github.com/fengalin/tokio", tag = "tokio-0.2.13-throttling.1", features = ["io-util", "macros", "rt-core", "sync", "stream", "time", "tcp", "udp", "rt-util"] }
|
2020-05-15 21:37:56 +00:00
|
|
|
futures = { version = "0.3", features = ["thread-pool"] }
|
2021-01-09 10:24:28 +00:00
|
|
|
rand = "0.8"
|
2021-03-21 10:57:10 +00:00
|
|
|
socket2 = {features = ["all"], version = "0.4"}
|
2018-03-06 09:38:27 +00:00
|
|
|
|
2018-11-30 17:38:25 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["winsock2", "processthreadsapi"] }
|
|
|
|
|
2020-11-22 14:24:55 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
gst-check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
|
|
gst-app = { package = "gstreamer-app", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
|
|
|
2018-03-06 09:38:27 +00:00
|
|
|
[lib]
|
|
|
|
name = "gstthreadshare"
|
2020-11-26 15:07:41 +00:00
|
|
|
crate-type = ["cdylib", "rlib"]
|
2018-03-06 09:38:27 +00:00
|
|
|
path = "src/lib.rs"
|
2018-03-15 18:52:38 +00:00
|
|
|
|
2018-04-05 13:00:43 +00:00
|
|
|
[[example]]
|
2018-07-06 07:35:16 +00:00
|
|
|
name = "benchmark"
|
|
|
|
path = "examples/benchmark.rs"
|
2018-04-05 13:00:43 +00:00
|
|
|
|
2018-04-05 17:28:20 +00:00
|
|
|
[[example]]
|
|
|
|
name = "udpsrc-benchmark-sender"
|
|
|
|
path = "examples/udpsrc_benchmark_sender.rs"
|
2018-07-06 07:32:24 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "tcpclientsrc-benchmark-sender"
|
|
|
|
path = "examples/tcpclientsrc_benchmark_sender.rs"
|
2019-06-03 10:53:58 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2020-04-05 14:38:52 +00:00
|
|
|
gst-plugin-version-helper = { path="../../version-helper" }
|
2019-08-05 13:19:06 +00:00
|
|
|
cc = "1.0.38"
|
|
|
|
pkg-config = "0.3.15"
|
2020-11-26 15:07:41 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
# GStreamer 1.14 is required for static linking
|
|
|
|
static = ["gst/v1_14"]
|
2021-08-11 17:51:36 +00:00
|
|
|
capi = []
|
2020-11-26 15:07:41 +00:00
|
|
|
|
|
|
|
[package.metadata.capi]
|
2021-07-09 10:49:33 +00:00
|
|
|
min_version = "0.8.0"
|
2020-11-26 15:07:41 +00:00
|
|
|
|
|
|
|
[package.metadata.capi.header]
|
|
|
|
enabled = false
|
|
|
|
|
|
|
|
[package.metadata.capi.library]
|
|
|
|
install_subdir = "gstreamer-1.0"
|
|
|
|
versioning = 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"
|