mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-05 17:19:38 +00:00
30 lines
854 B
TOML
30 lines
854 B
TOML
[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" }
|
|
tokio-reactor = { git = "https://github.com/tokio-rs/tokio" }
|
|
tokio-executor = { git = "https://github.com/tokio-rs/tokio" }
|
|
tokio-timer = { git = "https://github.com/tokio-rs/tokio" }
|
|
tokio-threadpool = { git = "https://github.com/tokio-rs/tokio" }
|
|
futures = "0.1"
|
|
lazy_static = "1.0"
|
|
either = "1.0"
|
|
rand = "0.4"
|
|
|
|
[lib]
|
|
name = "gstthreadshare"
|
|
crate-type = ["cdylib"]
|
|
path = "src/lib.rs"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
debug = true
|
|
panic = 'unwind'
|