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>2019-02-22 14:16:22 +0300
committerSebastian Dröge <sebastian@centricular.com>2019-02-22 14:23:33 +0300
commitb6aaddc0ddb6fe5d1f116199cb67428beb6b23a4 (patch)
tree450c6f343a79f6f4b7eedefb087b2c425872421b
parentff6e54c690740369c7b24f2cb38b6c346f64bc3f (diff)
Update versions of everything and use releases instead of GIT0.4.00.4
-rw-r--r--gst-plugin-audiofx/Cargo.toml8
-rw-r--r--gst-plugin-closedcaption/Cargo.toml10
-rw-r--r--gst-plugin-file/Cargo.toml8
-rw-r--r--gst-plugin-flv/Cargo.toml6
-rw-r--r--gst-plugin-http/Cargo.toml6
-rw-r--r--gst-plugin-threadshare/Cargo.toml18
-rw-r--r--gst-plugin-togglerecord/Cargo.toml10
-rw-r--r--gst-plugin-tutorial/Cargo.toml10
8 files changed, 38 insertions, 38 deletions
diff --git a/gst-plugin-audiofx/Cargo.toml b/gst-plugin-audiofx/Cargo.toml
index 94c324b42..2f48d1a77 100644
--- a/gst-plugin-audiofx/Cargo.toml
+++ b/gst-plugin-audiofx/Cargo.toml
@@ -6,10 +6,10 @@ repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
[dependencies]
-glib = { git = "https://github.com/gtk-rs/glib" }
-gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
-gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
-gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
+glib = { version = "0.7" }
+gstreamer = { version = "0.13", features = ["subclassing"] }
+gstreamer-base = { version = "0.13", features = ["subclassing"] }
+gstreamer-audio = { version = "0.13" }
byte-slice-cast = "0.2"
num-traits = "0.2"
diff --git a/gst-plugin-closedcaption/Cargo.toml b/gst-plugin-closedcaption/Cargo.toml
index 50f99dce0..4ab0f9e60 100644
--- a/gst-plugin-closedcaption/Cargo.toml
+++ b/gst-plugin-closedcaption/Cargo.toml
@@ -6,7 +6,7 @@ license = "LGPL-2.1+"
edition = "2018"
[dependencies]
-glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] }
+glib = { version = "0.7", features = ["subclassing"] }
combine = "3.6"
either = "1"
uuid = { version = "0.7", features = ["v4"] }
@@ -14,17 +14,17 @@ chrono = "0.4"
lazy_static = "1.2"
[dependencies.gst]
-git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+version = "0.13"
features = ["subclassing", "v1_12"]
package="gstreamer"
[dependencies.gst-base]
-git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+version = "0.13"
features = ["subclassing", "v1_12"]
package="gstreamer-base"
[dependencies.gst-video]
-git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+version = "0.13"
features = ["v1_12"]
package="gstreamer-video"
@@ -33,7 +33,7 @@ pretty_assertions = "0.6"
rand = "0.6"
[dev-dependencies.gst-check]
-git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+version = "0.13"
package="gstreamer-check"
[lib]
diff --git a/gst-plugin-file/Cargo.toml b/gst-plugin-file/Cargo.toml
index f57c333de..0774a2a5a 100644
--- a/gst-plugin-file/Cargo.toml
+++ b/gst-plugin-file/Cargo.toml
@@ -7,11 +7,11 @@ license = "MIT/Apache-2.0"
[dependencies]
url = "1.1"
-glib = { git = "https://github.com/gtk-rs/glib" }
-gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
-gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
+glib = { version = "0.7", features = ["subclassing"] }
+gstreamer = { version = "0.13", features = ["subclassing"] }
+gstreamer-base = { version = "0.13", features = ["subclassing"] }
[lib]
name = "gstrsfile"
crate-type = ["cdylib"]
-path = "src/lib.rs" \ No newline at end of file
+path = "src/lib.rs"
diff --git a/gst-plugin-flv/Cargo.toml b/gst-plugin-flv/Cargo.toml
index 3b0b042aa..f29f21056 100644
--- a/gst-plugin-flv/Cargo.toml
+++ b/gst-plugin-flv/Cargo.toml
@@ -8,9 +8,9 @@ edition = "2018"
[dependencies]
url = "1.1"
-glib = { git = "https://github.com/gtk-rs/glib" }
-gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
-gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
+glib = { version = "0.7", features = ["subclassing"] }
+gstreamer = { version = "0.13", features = ["subclassing"] }
+gstreamer-base = { version = "0.13" }
num-rational = { version = "0.2", default-features = false, features = [] }
nom = "4.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 c6de98e2b..dd87361ac 100644
--- a/gst-plugin-http/Cargo.toml
+++ b/gst-plugin-http/Cargo.toml
@@ -7,11 +7,11 @@ license = "MIT/Apache-2.0"
[dependencies]
url = "1.1"
-glib = { git = "https://github.com/gtk-rs/glib" }
+glib = { version = "0.7", features = ["subclassing"] }
reqwest = "0.9"
hyperx = "0.14"
-gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
-gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
+gstreamer = { version = "0.13", features = ["subclassing"] }
+gstreamer-base = { version = "0.13", features = ["subclassing"] }
[lib]
name = "gstrshttp"
diff --git a/gst-plugin-threadshare/Cargo.toml b/gst-plugin-threadshare/Cargo.toml
index 68da879de..53b36dc8c 100644
--- a/gst-plugin-threadshare/Cargo.toml
+++ b/gst-plugin-threadshare/Cargo.toml
@@ -6,15 +6,15 @@ license = "LGPL-2.1+"
[dependencies]
libc = "0.2"
-glib-sys = { git = "https://github.com/gtk-rs/sys" }
-gobject-sys = { git = "https://github.com/gtk-rs/sys" }
-gio-sys = { git = "https://github.com/gtk-rs/sys" }
-gstreamer-sys = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys" }
-glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] }
-gio = { git = "https://github.com/gtk-rs/gio" }
-gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
-gstreamer-app = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
-gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
+glib-sys = { version = "0.8" }
+gobject-sys = { version = "0.8" }
+gio-sys = { version = "0.8" }
+gstreamer-sys = { version = "0.7" }
+glib = { version = "0.7", features = ["subclassing"] }
+gio = { version = "0.6" }
+gstreamer = { version = "0.13", features = ["subclassing"] }
+gstreamer-app = { version = "0.13" }
+gstreamer-check = { version = "0.13" }
tokio = "0.1"
tokio-reactor = "0.1"
tokio-executor = "0.1"
diff --git a/gst-plugin-togglerecord/Cargo.toml b/gst-plugin-togglerecord/Cargo.toml
index 652fa5a58..ce076981d 100644
--- a/gst-plugin-togglerecord/Cargo.toml
+++ b/gst-plugin-togglerecord/Cargo.toml
@@ -5,11 +5,11 @@ authors = ["Sebastian Dröge <sebastian@centricular.com>"]
license = "LGPL-2.1+"
[dependencies]
-glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] }
-gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
-gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
-gtk = { git = "https://github.com/gtk-rs/gtk", optional = true }
-gio = { git = "https://github.com/gtk-rs/gio", optional = true }
+glib = { version = "0.7", features = ["subclassing"] }
+gstreamer = { version = "0.13", features = ["subclassing"] }
+gstreamer-video = { version = "0.13" }
+gtk = { version = "0.6", optional = true }
+gio = { version = "0.6", optional = true }
parking_lot = "0.7"
[dev-dependencies]
diff --git a/gst-plugin-tutorial/Cargo.toml b/gst-plugin-tutorial/Cargo.toml
index 57b4e5b8f..363c2a152 100644
--- a/gst-plugin-tutorial/Cargo.toml
+++ b/gst-plugin-tutorial/Cargo.toml
@@ -6,11 +6,11 @@ repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
[dependencies]
-glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] }
-gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
-gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
-gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
-gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
+glib = { version = "0.7", features = ["subclassing"] }
+gstreamer = { version = "0.13", features = ["subclassing"] }
+gstreamer-base = { version = "0.13", features = ["subclassing"] }
+gstreamer-video = { version = "0.13" }
+gstreamer-audio = { version = "0.13" }
byte-slice-cast = "0.2"
num-traits = "0.2"