2018-03-06 09:38:27 +00:00
|
|
|
[package]
|
|
|
|
name = "gst-plugin-threadshare"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
|
|
|
license = "LGPL-2.1+"
|
|
|
|
|
|
|
|
[dependencies]
|
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" }
|
2018-03-06 09:38:27 +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" }
|
2018-11-05 11:38:40 +00:00
|
|
|
gstreamer = { 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" }
|
2018-09-06 10:57:36 +00:00
|
|
|
gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
|
2018-11-05 11:38:40 +00:00
|
|
|
gst-plugin = { path = "../gst-plugin" }
|
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"
|
2018-06-24 12:04:30 +00:00
|
|
|
rand = "0.5"
|
2018-05-23 07:32:06 +00:00
|
|
|
net2 = "0.2"
|
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"
|