Merge gst-plugin-threadshare into gst-plugin-rs

This commit is contained in:
Sebastian Dröge 2018-11-05 13:38:40 +02:00
parent 132986cf71
commit 20bec35c68
2 changed files with 4 additions and 9 deletions

View file

@ -8,6 +8,7 @@ members = [
"gst-plugin-flv",
"gst-plugin-audiofx",
"gst-plugin-togglerecord",
"gst-plugin-threadshare",
"gst-plugin-tutorial",
]

View file

@ -6,11 +6,11 @@ license = "LGPL-2.1+"
[dependencies]
glib-sys = { git = "https://github.com/gtk-rs/sys" }
gstreamer-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
gstreamer-sys = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys" }
glib = { git = "https://github.com/gtk-rs/glib" }
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
gst-plugin = { git = "https://github.com/sdroege/gst-plugin-rs" }
gst-plugin = { path = "../gst-plugin" }
tokio = "0.1"
tokio-reactor = "0.1"
tokio-executor = "0.1"
@ -27,12 +27,6 @@ name = "gstthreadshare"
crate-type = ["cdylib"]
path = "src/lib.rs"
[profile.release]
lto = true
opt-level = 3
debug = true
panic = 'unwind'
[[example]]
name = "benchmark"
path = "examples/benchmark.rs"