From 20bec35c68176a46b8ff4f8b02cb24e6c72c1c01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 5 Nov 2018 13:38:40 +0200 Subject: [PATCH] Merge gst-plugin-threadshare into gst-plugin-rs --- Cargo.toml | 1 + gst-plugin-threadshare/Cargo.toml | 12 +++--------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 98caf511..e85b0958 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ members = [ "gst-plugin-flv", "gst-plugin-audiofx", "gst-plugin-togglerecord", + "gst-plugin-threadshare", "gst-plugin-tutorial", ] diff --git a/gst-plugin-threadshare/Cargo.toml b/gst-plugin-threadshare/Cargo.toml index 97a3cba5..fc88c06b 100644 --- a/gst-plugin-threadshare/Cargo.toml +++ b/gst-plugin-threadshare/Cargo.toml @@ -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"