mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-06-06 15:38:58 +00:00
Merge gst-plugin-threadshare into gst-plugin-rs
This commit is contained in:
parent
132986cf71
commit
20bec35c68
2 changed files with 4 additions and 9 deletions
|
@ -8,6 +8,7 @@ members = [
|
||||||
"gst-plugin-flv",
|
"gst-plugin-flv",
|
||||||
"gst-plugin-audiofx",
|
"gst-plugin-audiofx",
|
||||||
"gst-plugin-togglerecord",
|
"gst-plugin-togglerecord",
|
||||||
|
"gst-plugin-threadshare",
|
||||||
"gst-plugin-tutorial",
|
"gst-plugin-tutorial",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -6,11 +6,11 @@ license = "LGPL-2.1+"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
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" }
|
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" }
|
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 = "0.1"
|
||||||
tokio-reactor = "0.1"
|
tokio-reactor = "0.1"
|
||||||
tokio-executor = "0.1"
|
tokio-executor = "0.1"
|
||||||
|
@ -27,12 +27,6 @@ name = "gstthreadshare"
|
||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
lto = true
|
|
||||||
opt-level = 3
|
|
||||||
debug = true
|
|
||||||
panic = 'unwind'
|
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "benchmark"
|
name = "benchmark"
|
||||||
path = "examples/benchmark.rs"
|
path = "examples/benchmark.rs"
|
||||||
|
|
Loading…
Reference in a new issue