mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 19:41:00 +00:00
Don't require GStreamer 1.10
We're working just fine with 1.8 too
This commit is contained in:
parent
20743b29c0
commit
714301d584
7 changed files with 13 additions and 13 deletions
|
@ -8,9 +8,9 @@ license = "MIT/Apache-2.0"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gst-plugin = { path="../gst-plugin" }
|
gst-plugin = { path="../gst-plugin" }
|
||||||
glib = { git = "https://github.com/gtk-rs/glib" }
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
||||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
gstreamer-audio = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
gstreamer-audio = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
byte-slice-cast = "0.1"
|
byte-slice-cast = "0.1"
|
||||||
num-traits = "0.1"
|
num-traits = "0.1"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
|
||||||
url = "1.1"
|
url = "1.1"
|
||||||
gst-plugin = { path="../gst-plugin" }
|
gst-plugin = { path="../gst-plugin" }
|
||||||
gst-plugin-simple = { path="../gst-plugin-simple" }
|
gst-plugin-simple = { path="../gst-plugin-simple" }
|
||||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "gstrsfile"
|
name = "gstrsfile"
|
||||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
|
||||||
url = "1.1"
|
url = "1.1"
|
||||||
gst-plugin = { path="../gst-plugin" }
|
gst-plugin = { path="../gst-plugin" }
|
||||||
gst-plugin-simple = { path="../gst-plugin-simple" }
|
gst-plugin-simple = { path="../gst-plugin-simple" }
|
||||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
num-rational = { version = "0.1", default-features = false, features = [] }
|
num-rational = { version = "0.1", default-features = false, features = [] }
|
||||||
nom = "3.0"
|
nom = "3.0"
|
||||||
flavors = {git = "https://github.com/rust-av/flavors.git"}
|
flavors = {git = "https://github.com/rust-av/flavors.git"}
|
||||||
|
|
|
@ -10,7 +10,7 @@ url = "1.1"
|
||||||
gst-plugin = { path="../gst-plugin" }
|
gst-plugin = { path="../gst-plugin" }
|
||||||
gst-plugin-simple = { path="../gst-plugin-simple" }
|
gst-plugin-simple = { path="../gst-plugin-simple" }
|
||||||
reqwest = "0.8"
|
reqwest = "0.8"
|
||||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "gstrshttp"
|
name = "gstrshttp"
|
||||||
|
|
|
@ -9,8 +9,8 @@ license = "MIT/Apache-2.0"
|
||||||
url = "1.1"
|
url = "1.1"
|
||||||
glib = { git = "https://github.com/gtk-rs/glib" }
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
||||||
gst-plugin = { path="../gst-plugin" }
|
gst-plugin = { path="../gst-plugin" }
|
||||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "gst_plugin_simple"
|
name = "gst_plugin_simple"
|
||||||
|
|
|
@ -6,8 +6,8 @@ license = "LGPL-2.1+"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
glib = { git = "https://github.com/gtk-rs/glib" }
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
||||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
gstreamer-video = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
gstreamer-video = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
gst-plugin = { path = "../gst-plugin" }
|
gst-plugin = { path = "../gst-plugin" }
|
||||||
gtk = { git = "https://github.com/gtk-rs/gtk", features = ["v3_6"], optional = true }
|
gtk = { git = "https://github.com/gtk-rs/gtk", features = ["v3_6"], optional = true }
|
||||||
gio = { git = "https://github.com/gtk-rs/gio", optional = true }
|
gio = { git = "https://github.com/gtk-rs/gio", optional = true }
|
||||||
|
|
|
@ -17,10 +17,10 @@ lazy_static = "1.0"
|
||||||
byteorder = "1.0"
|
byteorder = "1.0"
|
||||||
glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
||||||
gobject-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", features = ["v1_10"] }
|
gstreamer-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
|
||||||
gstreamer-base-sys = { git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_10"] }
|
gstreamer-base-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
|
||||||
glib = { git = "https://github.com/gtk-rs/glib" }
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
||||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
|
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|
Loading…
Reference in a new issue