Skip to content

Commit

Permalink
Don't use versions for GIT dependencies in master
Browse files Browse the repository at this point in the history
  • Loading branch information
sdroege committed Aug 31, 2017
1 parent c94eb34 commit 15d05ed
Show file tree
Hide file tree
Showing 6 changed files with 70 additions and 70 deletions.
84 changes: 42 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions gstreamer-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ build = "build.rs"
[dependencies]
bitflags = "0.9"
libc = "0.2"
glib-sys = { version = "0.4", git = "https://github.com/gtk-rs/sys" }
gobject-sys = { version = "0.4", git = "https://github.com/gtk-rs/sys" }
gstreamer-sys = { version = "0.2", git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_8"] }
gstreamer-app-sys = { version = "0.2", git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_8"] }
glib = { version = "0.3", git = "https://github.com/gtk-rs/glib" }
gstreamer = { version = "0.8", path = "../gstreamer" }
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", features = ["v1_8"] }
gstreamer-app-sys = { git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_8"] }
glib = { git = "https://github.com/gtk-rs/glib" }
gstreamer = { path = "../gstreamer" }

[build-dependencies.rustdoc-stripper]
version = "0.1"
Expand Down
12 changes: 6 additions & 6 deletions gstreamer-audio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ build = "build.rs"
[dependencies]
bitflags = "0.9"
libc = "0.2"
glib-sys = { version = "0.4", git = "https://github.com/gtk-rs/sys" }
gobject-sys = { version = "0.4", git = "https://github.com/gtk-rs/sys" }
gstreamer-sys = { version = "0.2", git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_8"] }
gstreamer-audio-sys = { version = "0.2", git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_8"] }
glib = { version = "0.3", git = "https://github.com/gtk-rs/glib" }
gstreamer = { version = "0.8", path = "../gstreamer" }
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", features = ["v1_8"] }
gstreamer-audio-sys = { git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_8"] }
glib = { git = "https://github.com/gtk-rs/glib" }
gstreamer = { path = "../gstreamer" }
array-init = "0.0"

[build-dependencies.rustdoc-stripper]
Expand Down
12 changes: 6 additions & 6 deletions gstreamer-player/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ build = "build.rs"
[dependencies]
bitflags = "0.9"
libc = "0.2"
glib-sys = { version = "0.4", git = "https://github.com/gtk-rs/sys" }
gobject-sys = { version = "0.4", git = "https://github.com/gtk-rs/sys" }
gstreamer-sys = { version = "0.2", git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_12"] }
gstreamer-player-sys = { version = "0.2", git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_12"] }
glib = { version = "0.3", git = "https://github.com/gtk-rs/glib" }
gstreamer = { version = "0.8", path = "../gstreamer", features = ["v1_12"] }
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", features = ["v1_12"] }
gstreamer-player-sys = { git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_12"] }
glib = { git = "https://github.com/gtk-rs/glib" }
gstreamer = { path = "../gstreamer", features = ["v1_12"] }

[build-dependencies.rustdoc-stripper]
version = "0.1"
Expand Down
12 changes: 6 additions & 6 deletions gstreamer-video/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ build = "build.rs"
[dependencies]
bitflags = "0.9"
libc = "0.2"
glib-sys = { version = "0.4", git = "https://github.com/gtk-rs/sys" }
gobject-sys = { version = "0.4", git = "https://github.com/gtk-rs/sys" }
gstreamer-sys = { version = "0.2", git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_8"] }
gstreamer-video-sys = { version = "0.2", git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_8"] }
glib = { version = "0.3", git = "https://github.com/gtk-rs/glib" }
gstreamer = { version = "0.8", path = "../gstreamer" }
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", features = ["v1_8"] }
gstreamer-video-sys = { git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_8"] }
glib = { git = "https://github.com/gtk-rs/glib" }
gstreamer = { path = "../gstreamer" }

[build-dependencies.rustdoc-stripper]
version = "0.1"
Expand Down
8 changes: 4 additions & 4 deletions gstreamer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ build = "build.rs"
[dependencies]
bitflags = "0.9"
libc = "0.2"
glib-sys = { version = "0.4", git = "https://github.com/gtk-rs/sys" }
gobject-sys = { version = "0.4", git = "https://github.com/gtk-rs/sys" }
gstreamer-sys = { version = "0.2", git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_8"] }
glib = { version = "0.3", git = "https://github.com/gtk-rs/glib" }
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", features = ["v1_8"] }
glib = { git = "https://github.com/gtk-rs/glib" }
num-rational = { version = "0.1.38", default-features = false, features = [] }
lazy_static = "0.2"
futures = { version = "0.1", optional = true }
Expand Down

0 comments on commit 15d05ed

Please sign in to comment.