Skip to content

Commit

Permalink
Bump versions 2
Browse files Browse the repository at this point in the history
Signed-off-by: Hal Gentz <[email protected]>
  • Loading branch information
goddessfreya committed Mar 10, 2019
1 parent 71a71e2 commit 6b3212c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[workspace]

members = [
"glutin",
"glutin_examples",
Expand All @@ -8,3 +7,10 @@ members = [
"glutin_wgl_sys",
"glutin_gles2_sys",
]

[replace]
"glutin_egl_sys:0.1.1" = { path = "glutin_egl_sys" }
"glutin_glx_sys:0.1.1" = { path = "glutin_glx_sys" }
"glutin_wgl_sys:0.1.1" = { path = "glutin_wgl_sys" }
"glutin_gles2_sys:0.1.1" = { path = "glutin_gles2_sys" }

12 changes: 6 additions & 6 deletions glutin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ winit = "0.19"

[target.'cfg(target_os = "android")'.dependencies]
android_glue = "0.2"
glutin_egl_sys = { path = "../glutin_egl_sys" }
glutin_egl_sys = "0.1.1"

[target.'cfg(any(target_os = "ios", target_os = "macos"))'.dependencies]
objc = "0.2"
glutin_gles2_sys = { path = "../glutin_gles2_sys" }
glutin_gles2_sys = "0.1.1"

[target.'cfg(target_os = "macos")'.dependencies]
cgl = "0.2"
Expand All @@ -47,13 +47,13 @@ features = [

[target.'cfg(target_os = "windows")'.dependencies]
libloading = "0.5"
glutin_wgl_sys = { path = "../glutin_wgl_sys" }
glutin_egl_sys = { path = "../glutin_egl_sys" }
glutin_wgl_sys = "0.1.1"
glutin_egl_sys = "0.1.1"

[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "netbsd", target_os = "openbsd"))'.dependencies]
osmesa-sys = "0.1"
wayland-client = { version = "0.21", features = ["egl", "dlopen"] }
libloading = "0.5"
shared_library = "0.1"
glutin_egl_sys = { path = "../glutin_egl_sys" }
glutin_glx_sys = { path = "../glutin_glx_sys" }
glutin_egl_sys = "0.1.1"
glutin_glx_sys = "0.1.1"

0 comments on commit 6b3212c

Please sign in to comment.