Skip to content

Commit 17ee6d6

Browse files
authored
feat: bump sys bindings to v0.2.0
1 parent 193304d commit 17ee6d6

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

glutin/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ once_cell = "1.13"
2626
raw-window-handle = "0.5.0"
2727

2828
[target.'cfg(target_os = "windows")'.dependencies]
29-
glutin_egl_sys = { version = "0.1.7", path = "../glutin_egl_sys", optional = true }
30-
glutin_wgl_sys = { version = "0.1.6", path = "../glutin_wgl_sys", optional = true }
29+
glutin_egl_sys = { version = "0.2.0", path = "../glutin_egl_sys", optional = true }
30+
glutin_wgl_sys = { version = "0.2.0", path = "../glutin_wgl_sys", optional = true }
3131

3232
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
3333
version = "0.36"
@@ -41,11 +41,11 @@ features = [
4141
optional = true
4242

4343
[target.'cfg(target_os = "android")'.dependencies]
44-
glutin_egl_sys = { version = "0.1.7", path = "../glutin_egl_sys" }
44+
glutin_egl_sys = { version = "0.2.0", path = "../glutin_egl_sys" }
4545

4646
[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "netbsd", target_os = "openbsd"))'.dependencies]
47-
glutin_egl_sys = { version = "0.1.7", path = "../glutin_egl_sys", optional = true }
48-
glutin_glx_sys = { version = "0.1.9", path = "../glutin_glx_sys", optional = true }
47+
glutin_egl_sys = { version = "0.2.0", path = "../glutin_egl_sys", optional = true }
48+
glutin_glx_sys = { version = "0.2.0", path = "../glutin_glx_sys", optional = true }
4949
wayland-sys = { version = "0.30.0-beta.8", default-features = false, features = ["egl", "client", "dlopen"], optional = true }
5050
x11-dl = { version = "2.20.0", optional = true }
5151

glutin_egl_sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin_egl_sys"
3-
version = "0.1.7"
3+
version = "0.2.0"
44
authors = ["Kirill Chibisov <[email protected]>"]
55
description = "The egl bindings for glutin"
66
repository = "https://github.com/rust-windowing/glutin"

glutin_gles2_sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin_gles2_sys"
3-
version = "0.1.6"
3+
version = "0.2.0"
44
authors = ["Kirill Chibisov <[email protected]>"]
55
description = "The gles2 bindings for glutin"
66
repository = "https://github.com/rust-windowing/glutin"

glutin_glx_sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin_glx_sys"
3-
version = "0.1.9"
3+
version = "0.2.0"
44
authors = ["Kirill Chibisov <[email protected]>"]
55
description = "The glx bindings for glutin"
66
repository = "https://github.com/rust-windowing/glutin"

glutin_wgl_sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin_wgl_sys"
3-
version = "0.1.6"
3+
version = "0.2.0"
44
authors = ["Kirill Chibisov <[email protected]>"]
55
description = "The wgl bindings for glutin"
66
repository = "https://github.com/rust-windowing/glutin"

0 commit comments

Comments
 (0)