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]
|
|
|
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
|
|
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
|
|
|
gst-plugin = { git = "https://github.com/sdroege/gst-plugin-rs" }
|
|
|
|
tokio = { git = "https://github.com/tokio-rs/tokio" }
|
2018-03-08 20:26:34 +00:00
|
|
|
tokio-reactor = { git = "https://github.com/tokio-rs/tokio" }
|
2018-03-12 10:24:37 +00:00
|
|
|
tokio-executor = { git = "https://github.com/tokio-rs/tokio" }
|
2018-04-02 07:53:40 +00:00
|
|
|
tokio-timer = { git = "https://github.com/tokio-rs/tokio" }
|
|
|
|
tokio-threadpool = { git = "https://github.com/tokio-rs/tokio" }
|
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-03-16 17:11:53 +00:00
|
|
|
rand = "0.4"
|
2018-03-06 09:38:27 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "gstthreadshare"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
path = "src/lib.rs"
|
2018-03-15 18:52:38 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
opt-level = 3
|
|
|
|
debug = true
|
|
|
|
panic = 'unwind'
|