gst-plugins-rs/gst-plugin-threadshare/Cargo.toml

55 lines
1.7 KiB
TOML
Raw Normal View History

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+"
description = "Threadshare Plugin"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
2018-03-06 09:38:27 +00:00
[dependencies]
libc = "0.2"
glib-sys = { git = "https://github.com/gtk-rs/sys" }
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
gio-sys = { git = "https://github.com/gtk-rs/sys" }
gstreamer-sys = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys" }
glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] }
gio = { git = "https://github.com/gtk-rs/gio" }
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
gstreamer-app = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gstreamer-net = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
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"
either = "1.0"
2019-07-02 14:41:27 +00:00
rand = "0.7"
net2 = "0.2"
2018-03-06 09:38:27 +00:00
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winsock2", "processthreadsapi"] }
2018-03-06 09:38:27 +00:00
[lib]
name = "gstthreadshare"
crate-type = ["cdylib", "rlib"]
2018-03-06 09:38:27 +00:00
path = "src/lib.rs"
2018-03-15 18:52:38 +00:00
[[example]]
name = "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"
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }