Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-09-08 20:30:21 +0300
committerSebastian Dröge <sebastian@centricular.com>2018-09-10 01:56:25 +0300
commit307238b8589beb086875b52f4d536e0b4dc8bd85 (patch)
tree53a36c676b95d36bd102a20d36edda7afa41cf14
parentd768b08140a8e9addd54f9a0632ea865aac1c38f (diff)
Update versions of everything and use releases instead of GIT0.3.0
-rw-r--r--gst-plugin-audiofx/Cargo.toml12
-rw-r--r--gst-plugin-file/Cargo.toml6
-rw-r--r--gst-plugin-flv/Cargo.toml6
-rw-r--r--gst-plugin-http/Cargo.toml6
-rw-r--r--gst-plugin-simple/Cargo.toml10
-rw-r--r--gst-plugin-togglerecord/Cargo.toml14
-rw-r--r--gst-plugin-tutorial/Cargo.toml14
-rw-r--r--gst-plugin/Cargo.toml16
8 files changed, 42 insertions, 42 deletions
diff --git a/gst-plugin-audiofx/Cargo.toml b/gst-plugin-audiofx/Cargo.toml
index e18fb0ceb..6eb2ed8a6 100644
--- a/gst-plugin-audiofx/Cargo.toml
+++ b/gst-plugin-audiofx/Cargo.toml
@@ -6,12 +6,12 @@ repository = "https://github.com/sdroege/gst-plugin-rs"
license = "MIT/Apache-2.0"
[dependencies]
-gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
-gst-plugin = { path="../gst-plugin" }
-glib = { git = "https://github.com/gtk-rs/glib" }
-gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
-gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
-gstreamer-audio = { git = "https://github.com/sdroege/gstreamer-rs" }
+gobject-subclass = "0.2"
+gst-plugin = { version = "0.3", path="../gst-plugin" }
+glib = "0.6"
+gstreamer = "0.12"
+gstreamer-base = "0.12"
+gstreamer-audio = "0.12"
byte-slice-cast = "0.2"
num-traits = "0.2"
diff --git a/gst-plugin-file/Cargo.toml b/gst-plugin-file/Cargo.toml
index f4fb418f4..ecea6ff20 100644
--- a/gst-plugin-file/Cargo.toml
+++ b/gst-plugin-file/Cargo.toml
@@ -7,9 +7,9 @@ license = "MIT/Apache-2.0"
[dependencies]
url = "1.1"
-gst-plugin = { path="../gst-plugin" }
-gst-plugin-simple = { path="../gst-plugin-simple" }
-gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
+gst-plugin = { version = "0.3", path="../gst-plugin" }
+gst-plugin-simple = { version = "0.3", path="../gst-plugin-simple" }
+gstreamer = "0.12"
[lib]
name = "gstrsfile"
diff --git a/gst-plugin-flv/Cargo.toml b/gst-plugin-flv/Cargo.toml
index c2b141b39..15b239194 100644
--- a/gst-plugin-flv/Cargo.toml
+++ b/gst-plugin-flv/Cargo.toml
@@ -7,9 +7,9 @@ license = "MIT/Apache-2.0"
[dependencies]
url = "1.1"
-gst-plugin = { path="../gst-plugin" }
-gst-plugin-simple = { path="../gst-plugin-simple" }
-gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
+gst-plugin = { version = "0.3", path="../gst-plugin" }
+gst-plugin-simple = { version = "0.3", path="../gst-plugin-simple" }
+gstreamer = "0.12"
num-rational = { version = "0.2", default-features = false, features = [] }
nom = "3.0"
flavors = {git = "https://github.com/rust-av/flavors.git"}
diff --git a/gst-plugin-http/Cargo.toml b/gst-plugin-http/Cargo.toml
index 1f2c354e6..c6db650e8 100644
--- a/gst-plugin-http/Cargo.toml
+++ b/gst-plugin-http/Cargo.toml
@@ -7,10 +7,10 @@ license = "MIT/Apache-2.0"
[dependencies]
url = "1.1"
-gst-plugin = { path="../gst-plugin" }
-gst-plugin-simple = { path="../gst-plugin-simple" }
+gst-plugin = { version = "0.3", path="../gst-plugin" }
+gst-plugin-simple = { version = "0.3", path="../gst-plugin-simple" }
reqwest = "0.8"
-gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
+gstreamer = "0.12"
[lib]
name = "gstrshttp"
diff --git a/gst-plugin-simple/Cargo.toml b/gst-plugin-simple/Cargo.toml
index 53abbf52b..b288aaf06 100644
--- a/gst-plugin-simple/Cargo.toml
+++ b/gst-plugin-simple/Cargo.toml
@@ -7,11 +7,11 @@ license = "MIT/Apache-2.0"
[dependencies]
url = "1.1"
-glib = { git = "https://github.com/gtk-rs/glib" }
-gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
-gst-plugin = { path="../gst-plugin" }
-gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
-gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
+glib = "0.6"
+gobject-subclass = "0.2"
+gst-plugin = { version = "0.3", path="../gst-plugin" }
+gstreamer = "0.12"
+gstreamer-base = "0.12"
[lib]
name = "gst_plugin_simple"
diff --git a/gst-plugin-togglerecord/Cargo.toml b/gst-plugin-togglerecord/Cargo.toml
index 2411093c9..bf7fa22d6 100644
--- a/gst-plugin-togglerecord/Cargo.toml
+++ b/gst-plugin-togglerecord/Cargo.toml
@@ -5,13 +5,13 @@ 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" }
-gstreamer-video = { git = "https://github.com/sdroege/gstreamer-rs" }
-gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
-gst-plugin = { path = "../gst-plugin" }
-gtk = { git = "https://github.com/gtk-rs/gtk", features = ["v3_6"], optional = true }
-gio = { git = "https://github.com/gtk-rs/gio", optional = true }
+glib = "0.6"
+gstreamer = "0.12"
+gstreamer-video = "0.12"
+gobject-subclass = "0.2"
+gst-plugin = { version = "0.3", path = "../gst-plugin" }
+gtk = { version = "0.5", features = ["v3_6"], optional = true }
+gio = { version = "0.5", optional = true }
[dev-dependencies]
either = "1.0"
diff --git a/gst-plugin-tutorial/Cargo.toml b/gst-plugin-tutorial/Cargo.toml
index 78e683695..d9b51c3d8 100644
--- a/gst-plugin-tutorial/Cargo.toml
+++ b/gst-plugin-tutorial/Cargo.toml
@@ -6,13 +6,13 @@ repository = "https://github.com/sdroege/gst-plugin-rs"
license = "MIT/Apache-2.0"
[dependencies]
-gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
-gst-plugin = { path="../gst-plugin" }
-glib = { git = "https://github.com/gtk-rs/glib" }
-gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
-gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
-gstreamer-video = { git = "https://github.com/sdroege/gstreamer-rs" }
-gstreamer-audio = { git = "https://github.com/sdroege/gstreamer-rs" }
+gobject-subclass = "0.2"
+gst-plugin = { version = "0.3", path="../gst-plugin" }
+glib = "0.6"
+gstreamer = "0.12"
+gstreamer-base = "0.12"
+gstreamer-video = "0.12"
+gstreamer-audio = "0.12"
byte-slice-cast = "0.2"
num-traits = "0.2"
diff --git a/gst-plugin/Cargo.toml b/gst-plugin/Cargo.toml
index d98db9cd6..55d45565b 100644
--- a/gst-plugin/Cargo.toml
+++ b/gst-plugin/Cargo.toml
@@ -15,14 +15,14 @@ keywords = ["gstreamer", "multimedia", "audio", "video", "gnome"]
libc = "0.2"
lazy_static = "1.0"
byteorder = "1.0"
-gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
-glib-sys = { git = "https://github.com/gtk-rs/sys" }
-gobject-sys = { git = "https://github.com/gtk-rs/sys" }
-gstreamer-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
-gstreamer-base-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
-glib = { git = "https://github.com/gtk-rs/glib" }
-gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
-gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
+gobject-subclass = "0.2"
+glib-sys = "0.7"
+gobject-sys = "0.7"
+gstreamer-sys = "0.6"
+gstreamer-base-sys = "0.6"
+glib = "0.6"
+gstreamer = "0.12"
+gstreamer-base = "0.12"
[lib]
name = "gst_plugin"