2018-03-06 09:38:27 +00:00
|
|
|
[package]
|
|
|
|
name = "gst-plugin-threadshare"
|
2019-07-07 10:20:15 +00:00
|
|
|
version = "0.6.0"
|
2018-03-06 09:38:27 +00:00
|
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
|
|
|
license = "LGPL-2.1+"
|
2019-06-03 10:53:58 +00:00
|
|
|
description = "Threadshare Plugin"
|
|
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
2018-03-06 09:38:27 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2018-11-30 17:38:25 +00:00
|
|
|
libc = "0.2"
|
2018-04-05 10:36:58 +00:00
|
|
|
glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
2018-11-13 12:13:23 +00:00
|
|
|
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
|
|
|
|
gio-sys = { git = "https://github.com/gtk-rs/sys" }
|
2018-11-05 11:38:40 +00:00
|
|
|
gstreamer-sys = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys" }
|
2019-09-09 07:45:06 +00:00
|
|
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
2018-11-13 12:13:23 +00:00
|
|
|
gio = { git = "https://github.com/gtk-rs/gio" }
|
2019-09-09 07:45:06 +00:00
|
|
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2019-01-11 23:45:05 +00:00
|
|
|
gstreamer-app = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2018-11-13 15:10:52 +00:00
|
|
|
gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2019-03-13 16:07:53 +00:00
|
|
|
gstreamer-net = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2019-08-05 13:19:06 +00:00
|
|
|
gstreamer-rtp = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2019-03-13 16:07:53 +00:00
|
|
|
|
2018-11-01 11:43:40 +00:00
|
|
|
tokio = "0.1"
|
|
|
|
tokio-reactor = "0.1"
|
|
|
|
tokio-executor = "0.1"
|
|
|
|
tokio-timer = "0.2"
|
|
|
|
tokio-current-thread = "0.1"
|
2018-03-08 20:26:34 +00:00
|
|
|
futures = "0.1"
|
|
|
|
lazy_static = "1.0"
|
2018-03-12 13:47:33 +00:00
|
|
|
either = "1.0"
|
2019-07-02 14:41:27 +00:00
|
|
|
rand = "0.7"
|
2018-05-23 07:32:06 +00:00
|
|
|
net2 = "0.2"
|
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"] }
|
|
|
|
|
2018-03-06 09:38:27 +00:00
|
|
|
[lib]
|
|
|
|
name = "gstthreadshare"
|
2018-11-05 11:47:34 +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]
|
|
|
|
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
|
2019-08-05 13:19:06 +00:00
|
|
|
cc = "1.0.38"
|
|
|
|
pkg-config = "0.3.15"
|