Update versions of everything and use releases instead of GIT

This commit is contained in:
Sebastian Dröge 2018-03-20 13:16:45 +02:00
parent f3714f6fe7
commit 240058f357
8 changed files with 37 additions and 37 deletions

View file

@ -6,11 +6,11 @@ repository = "https://github.com/sdroege/gst-plugin-rs"
license = "MIT/Apache-2.0"
[dependencies]
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" }
gst-plugin = { version = "0.2", path="../gst-plugin" }
glib = "0.5"
gstreamer = "0.11"
gstreamer-base = "0.11"
gstreamer-audio = "0.11"
byte-slice-cast = "0.1"
num-traits = "0.2"

View file

@ -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.2", path="../gst-plugin" }
gst-plugin-simple = { version = "0.2", path="../gst-plugin-simple" }
gstreamer = "0.11"
[lib]
name = "gstrsfile"

View file

@ -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.2", path="../gst-plugin" }
gst-plugin-simple = { version = "0.2", path="../gst-plugin-simple" }
gstreamer = "0.11"
num-rational = { version = "0.1", default-features = false, features = [] }
nom = "3.0"
flavors = {git = "https://github.com/rust-av/flavors.git"}

View file

@ -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.2", path="../gst-plugin" }
gst-plugin-simple = { version = "0.2", path="../gst-plugin-simple" }
reqwest = "0.8"
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
gstreamer = "0.11"
[lib]
name = "gstrshttp"

View file

@ -7,10 +7,10 @@ license = "MIT/Apache-2.0"
[dependencies]
url = "1.1"
glib = { git = "https://github.com/gtk-rs/glib" }
gst-plugin = { path="../gst-plugin" }
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
glib = "0.5"
gst-plugin = { version = "0.2", path="../gst-plugin" }
gstreamer = "0.11"
gstreamer-base = "0.11"
[lib]
name = "gst_plugin_simple"

View file

@ -5,12 +5,12 @@ 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" }
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.5"
gstreamer = "0.11"
gstreamer-video = "0.11"
gst-plugin = { version = "0.2", path = "../gst-plugin" }
gtk = { version = "0.4", features = ["v3_6"], optional = true }
gio = { version = "0.4", optional = true }
send-cell = { version = "0.1", optional = true }
[dev-dependencies]

View file

@ -6,12 +6,12 @@ repository = "https://github.com/sdroege/gst-plugin-rs"
license = "MIT/Apache-2.0"
[dependencies]
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" }
gst-plugin = { version = "0.2", path="../gst-plugin" }
glib = "0.5"
gstreamer = "0.11"
gstreamer-base = "0.11"
gstreamer-video = "0.11"
gstreamer-audio = "0.11"
byte-slice-cast = "0.1"
num-traits = "0.2"

View file

@ -15,13 +15,13 @@ keywords = ["gstreamer", "multimedia", "audio", "video", "gnome"]
libc = "0.2"
lazy_static = "1.0"
byteorder = "1.0"
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" }
glib-sys = "0.6"
gobject-sys = "0.6"
gstreamer-sys = "0.5"
gstreamer-base-sys = "0.5"
glib = "0.5"
gstreamer = "0.11"
gstreamer-base = "0.11"
[lib]
name = "gst_plugin"