diff --git a/gst-plugin-audiofx/Cargo.toml b/gst-plugin-audiofx/Cargo.toml index 86f4a5a5..0b1520b1 100644 --- a/gst-plugin-audiofx/Cargo.toml +++ b/gst-plugin-audiofx/Cargo.toml @@ -8,9 +8,9 @@ license = "MIT/Apache-2.0" [dependencies] gst-plugin = { version = "0.1", path="../gst-plugin" } glib = "0.4" -gstreamer = { version = "0.10", features = ["v1_10"] } -gstreamer-base = { version = "0.10", features = ["v1_10"] } -gstreamer-audio = { version = "0.10", features = ["v1_10"] } +gstreamer = "0.10" +gstreamer-base = "0.10" +gstreamer-audio = "0.10" byte-slice-cast = "0.1" num-traits = "0.1" diff --git a/gst-plugin-file/Cargo.toml b/gst-plugin-file/Cargo.toml index 21848840..62277ebf 100644 --- a/gst-plugin-file/Cargo.toml +++ b/gst-plugin-file/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0" url = "1.1" gst-plugin = { version = "0.1", path="../gst-plugin" } gst-plugin-simple = { path = "../gst-plugin-simple" } -gstreamer = { version = "0.10", features = ["v1_10"] } +gstreamer = "0.10" [lib] name = "gstrsfile" diff --git a/gst-plugin-flv/Cargo.toml b/gst-plugin-flv/Cargo.toml index 243df1e5..c137638d 100644 --- a/gst-plugin-flv/Cargo.toml +++ b/gst-plugin-flv/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0" url = "1.1" gst-plugin = { version = "0.1", path="../gst-plugin" } gst-plugin-simple = { path="../gst-plugin-simple" } -gstreamer = { version = "0.10", features = ["v1_10"] } +gstreamer = "0.10" num-rational = { version = "0.1", 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 5cdf47f8..15a98930 100644 --- a/gst-plugin-http/Cargo.toml +++ b/gst-plugin-http/Cargo.toml @@ -10,7 +10,7 @@ url = "1.1" gst-plugin = { version = "0.1", path="../gst-plugin" } gst-plugin-simple = { path="../gst-plugin-simple" } reqwest = "0.8" -gstreamer = { version = "0.10", features = ["v1_10"] } +gstreamer = "0.10" [lib] name = "gstrshttp" diff --git a/gst-plugin-simple/Cargo.toml b/gst-plugin-simple/Cargo.toml index 69fd0c97..ada566da 100644 --- a/gst-plugin-simple/Cargo.toml +++ b/gst-plugin-simple/Cargo.toml @@ -9,8 +9,8 @@ license = "MIT/Apache-2.0" url = "1.1" glib = "0.4" gst-plugin = { version = "0.1", path="../gst-plugin" } -gstreamer = { version = "0.10", features = ["v1_10"] } -gstreamer-base = { version = "0.10", features = ["v1_10"] } +gstreamer = "0.10" +gstreamer-base = "0.10" [lib] name = "gst_plugin_simple" diff --git a/gst-plugin-togglerecord/Cargo.toml b/gst-plugin-togglerecord/Cargo.toml index d5dba182..59e47e5b 100644 --- a/gst-plugin-togglerecord/Cargo.toml +++ b/gst-plugin-togglerecord/Cargo.toml @@ -6,8 +6,8 @@ license = "LGPL-2.1+" [dependencies] glib = "0.4" -gstreamer = { version = "0.10", features = ["v1_10"] } -gstreamer-video = { version = "0.10", features = ["v1_10"] } +gstreamer = "0.10" +gstreamer-video = "0.10" gst-plugin = { version = "0.1", path = "../gst-plugin" } gtk = { version = "0.3", features = ["v3_6"], optional = true } gio = { version = "0.3", optional = true } diff --git a/gst-plugin/Cargo.toml b/gst-plugin/Cargo.toml index 5fb99cb9..df8e1d63 100644 --- a/gst-plugin/Cargo.toml +++ b/gst-plugin/Cargo.toml @@ -17,11 +17,11 @@ lazy_static = "1.0" byteorder = "1.0" glib-sys = "0.5" gobject-sys = "0.5" -gstreamer-sys = { version = "0.4", features = ["v1_10"] } -gstreamer-base-sys = { version = "0.4", features = ["v1_10"] } +gstreamer-sys = "0.4" +gstreamer-base-sys = "0.4" glib = "0.4" -gstreamer = { version = "0.10", features = ["v1_10"] } -gstreamer-base = { version = "0.10" } +gstreamer = "0.10" +gstreamer-base = "0.10" [lib] name = "gst_plugin"