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-06-25 10:30:12 +0300
committerSebastian Dröge <sebastian@centricular.com>2019-06-25 10:30:12 +0300
commit43aeb840e59b6b019789f80714459f9bff5f954d (patch)
treebf0344950f7a1ceee120265b775f2688a3d6c024
parent7948b266c5c7e10eb58d62f183ebb8476597f1db (diff)
Update versions of everything and use releases instead of GIT0.5.0
-rw-r--r--gst-plugin-audiofx/Cargo.toml8
-rw-r--r--gst-plugin-cdg/Cargo.toml10
-rw-r--r--gst-plugin-closedcaption/Cargo.toml10
-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-rav1e/Cargo.toml8
-rw-r--r--gst-plugin-s3/Cargo.toml6
-rw-r--r--gst-plugin-sodium/Cargo.toml10
-rw-r--r--gst-plugin-threadshare/Cargo.toml20
-rw-r--r--gst-plugin-togglerecord/Cargo.toml10
-rw-r--r--gst-plugin-tutorial/Cargo.toml10
12 files changed, 55 insertions, 55 deletions
diff --git a/gst-plugin-audiofx/Cargo.toml b/gst-plugin-audiofx/Cargo.toml
index cdd47b701..cf30e2cc0 100644
--- a/gst-plugin-audiofx/Cargo.toml
+++ b/gst-plugin-audiofx/Cargo.toml
@@ -7,10 +7,10 @@ license = "MIT/Apache-2.0"
description = "Rust AudioFx Plugin"
[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.8" }
+gstreamer = { version = "0.14", features = ["subclassing"] }
+gstreamer-base = { version = "0.14", features = ["subclassing"] }
+gstreamer-audio = { version = "0.14" }
byte-slice-cast = "0.3"
num-traits = "0.2"
diff --git a/gst-plugin-cdg/Cargo.toml b/gst-plugin-cdg/Cargo.toml
index 6329b9999..693fcb550 100644
--- a/gst-plugin-cdg/Cargo.toml
+++ b/gst-plugin-cdg/Cargo.toml
@@ -8,11 +8,11 @@ description = "CDG Plugin"
edition = "2018"
[dependencies]
-glib = { git = "https://github.com/gtk-rs/glib" }
-gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing", "v1_12"] }
-gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing", "v1_12"] }
-gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing", "v1_12"] }
-gstreamer-app = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
+glib = { version = "0.8" }
+gstreamer = { version = "0.14", features = ["subclassing", "v1_12"] }
+gstreamer-base = { version = "0.14", features = ["subclassing", "v1_12"] }
+gstreamer-video = { version = "0.14", features = ["subclassing", "v1_12"] }
+gstreamer-app = { version = "0.14" }
cdg = "0.1.0"
cdg_renderer = "0.2"
image = "0.21"
diff --git a/gst-plugin-closedcaption/Cargo.toml b/gst-plugin-closedcaption/Cargo.toml
index a4f6c5fa8..dad48dee7 100644
--- a/gst-plugin-closedcaption/Cargo.toml
+++ b/gst-plugin-closedcaption/Cargo.toml
@@ -8,7 +8,7 @@ description = "Rust Closed Caption Plugin"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
[dependencies]
-glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] }
+glib = { version = "0.8", features = ["subclassing"] }
combine = "3.6"
either = "1"
uuid = { version = "0.7", features = ["v4"] }
@@ -16,17 +16,17 @@ chrono = "0.4"
lazy_static = "1.2"
[dependencies.gst]
-git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+version = "0.14"
features = ["subclassing", "v1_12"]
package="gstreamer"
[dependencies.gst-base]
-git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+version = "0.14"
features = ["subclassing", "v1_12"]
package="gstreamer-base"
[dependencies.gst-video]
-git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+version = "0.14"
features = ["v1_12"]
package="gstreamer-video"
@@ -35,7 +35,7 @@ pretty_assertions = "0.6"
rand = "0.6"
[dev-dependencies.gst-check]
-git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+version = "0.14"
package="gstreamer-check"
[lib]
diff --git a/gst-plugin-file/Cargo.toml b/gst-plugin-file/Cargo.toml
index 423ff6dee..0597a5d7d 100644
--- a/gst-plugin-file/Cargo.toml
+++ b/gst-plugin-file/Cargo.toml
@@ -8,9 +8,9 @@ description = "Rust File Plugin"
[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.8" }
+gstreamer = { version = "0.14", features = ["subclassing"] }
+gstreamer-base = { version = "0.14", features = ["subclassing"] }
[lib]
name = "gstrsfile"
diff --git a/gst-plugin-flv/Cargo.toml b/gst-plugin-flv/Cargo.toml
index bf8b114ff..d46f5d622 100644
--- a/gst-plugin-flv/Cargo.toml
+++ b/gst-plugin-flv/Cargo.toml
@@ -9,9 +9,9 @@ description = "Rust FLV Plugin"
[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.8" }
+gstreamer = { version = "0.14", features = ["subclassing"] }
+gstreamer-base = { version = "0.14" }
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 4bc82ffe6..f42fc74d9 100644
--- a/gst-plugin-http/Cargo.toml
+++ b/gst-plugin-http/Cargo.toml
@@ -8,11 +8,11 @@ description = "Rust HTTP Plugin"
[dependencies]
url = "1.1"
-glib = { git = "https://github.com/gtk-rs/glib" }
+glib = { version = "0.8" }
reqwest = "0.9"
hyperx = "0.15"
-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.14", features = ["subclassing"] }
+gstreamer-base = { version = "0.14", features = ["subclassing"] }
[lib]
name = "gstrshttp"
diff --git a/gst-plugin-rav1e/Cargo.toml b/gst-plugin-rav1e/Cargo.toml
index 310b64534..bade2a157 100644
--- a/gst-plugin-rav1e/Cargo.toml
+++ b/gst-plugin-rav1e/Cargo.toml
@@ -8,10 +8,10 @@ description = "rav1e AV1 Encoder Plugin"
edition = "2018"
[dependencies]
-glib = { git = "https://github.com/gtk-rs/glib" }
-gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
-gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
-gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
+glib = { version = "0.8" }
+gstreamer = { version = "0.14", features = ["subclassing"] }
+gstreamer-video = { version = "0.14", features = ["subclassing"] }
+gstreamer-check = { version = "0.14" }
rav1e = { git = "https://github.com/xiph/rav1e.git", default-features=false }
[lib]
diff --git a/gst-plugin-s3/Cargo.toml b/gst-plugin-s3/Cargo.toml
index 92c99049a..4c27697e6 100644
--- a/gst-plugin-s3/Cargo.toml
+++ b/gst-plugin-s3/Cargo.toml
@@ -10,9 +10,9 @@ edition = "2018"
[dependencies]
bytes = "0.4"
futures = "0.1"
-glib = { git = "https://github.com/gtk-rs/glib" }
-gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing", "v1_12"] }
-gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing", "v1_12"] }
+glib = { version = "0.8" }
+gstreamer = { version = "0.14", features = ["subclassing", "v1_12"] }
+gstreamer-base = { version = "0.14", features = ["subclassing", "v1_12"] }
rusoto_core = "0.39.0"
rusoto_s3 = "0.39.0"
url = "1.7"
diff --git a/gst-plugin-sodium/Cargo.toml b/gst-plugin-sodium/Cargo.toml
index 29fddff63..79cfffdce 100644
--- a/gst-plugin-sodium/Cargo.toml
+++ b/gst-plugin-sodium/Cargo.toml
@@ -7,9 +7,9 @@ description = "libsodium-based file encryption and decryption"
edition = "2018"
[dependencies]
-glib = { git = "https://github.com/gtk-rs/glib" }
-gst = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing", "v1_14"], package="gstreamer" }
-gst-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing", "v1_14"], package = "gstreamer-base" }
+glib = { version = "0.8" }
+gst = { version = "0.14", features = ["subclassing", "v1_14"], package="gstreamer" }
+gst-base = { version = "0.14", features = ["subclassing", "v1_14"], package = "gstreamer-base" }
sodiumoxide = "0.2.1"
lazy_static = "1.3.0"
hex = "0.3.2"
@@ -25,11 +25,11 @@ pretty_assertions = "0.6"
rand = "0.6"
[dev-dependencies.gst-check]
-git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+version = "0.14"
package="gstreamer-check"
[dev-dependencies.gst-app]
-git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+version = "0.14"
package="gstreamer-app"
[lib]
diff --git a/gst-plugin-threadshare/Cargo.toml b/gst-plugin-threadshare/Cargo.toml
index 077531b93..5b8088bf8 100644
--- a/gst-plugin-threadshare/Cargo.toml
+++ b/gst-plugin-threadshare/Cargo.toml
@@ -8,16 +8,16 @@ repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
[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" }
-gstreamer-net = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
+glib-sys = { version = "0.9" }
+gobject-sys = { version = "0.9" }
+gio-sys = { version = "0.9" }
+gstreamer-sys = { version = "0.8" }
+glib = { version = "0.8", features = ["subclassing"] }
+gio = { version = "0.7" }
+gstreamer = { version = "0.14", features = ["subclassing"] }
+gstreamer-app = { version = "0.14" }
+gstreamer-check = { version = "0.14" }
+gstreamer-net = { version = "0.14" }
tokio = "0.1"
tokio-reactor = "0.1"
diff --git a/gst-plugin-togglerecord/Cargo.toml b/gst-plugin-togglerecord/Cargo.toml
index 640fdad66..ab69d24e4 100644
--- a/gst-plugin-togglerecord/Cargo.toml
+++ b/gst-plugin-togglerecord/Cargo.toml
@@ -7,11 +7,11 @@ description = "Toggle Record Plugin"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
[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.8", features = ["subclassing"] }
+gstreamer = { version = "0.14", features = ["subclassing"] }
+gstreamer-video = { version = "0.14" }
+gtk = { version = "0.7", optional = true }
+gio = { version = "0.7", optional = true }
parking_lot = "0.8"
[dev-dependencies]
diff --git a/gst-plugin-tutorial/Cargo.toml b/gst-plugin-tutorial/Cargo.toml
index cc31e5553..1f7f8c2a8 100644
--- a/gst-plugin-tutorial/Cargo.toml
+++ b/gst-plugin-tutorial/Cargo.toml
@@ -8,11 +8,11 @@ edition = "2018"
description = "Rust Tutorial Plugin"
[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.8", features = ["subclassing"] }
+gstreamer = { version = "0.14", features = ["subclassing"] }
+gstreamer-base = { version = "0.14", features = ["subclassing"] }
+gstreamer-video = { version = "0.14" }
+gstreamer-audio = { version = "0.14" }
byte-slice-cast = "0.3"
num-traits = "0.2"