diff --git a/Cargo.lock b/Cargo.lock index 9d0ebf3..271ad27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6,7 +6,7 @@ dependencies = [ "cgmath 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "collision 0.5.1 (git+https://github.com/csherratt/collision-rs?rev=f80825e)", "flate2 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "glutin 0.4.9 (git+https://github.com/Thinkofname/glutin?branch=hide-cursor-state-x11)", + "glutin 0.4.9 (git+https://github.com/tomaka/glutin?rev=8ae2df68e)", "hyper 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", @@ -254,6 +254,16 @@ dependencies = [ "xml-rs 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "gl_generator" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "xml-rs 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "gleam" version = "0.2.8" @@ -271,7 +281,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "glutin" version = "0.4.9" -source = "git+https://github.com/Thinkofname/glutin?branch=hide-cursor-state-x11#267221af3e239c79a2617c46ba3f1259663c29f7" +source = "git+https://github.com/tomaka/glutin?rev=8ae2df68e#8ae2df68e19ca71453af5e11de9ca807ef7adcb4" dependencies = [ "android_glue 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -280,9 +290,8 @@ dependencies = [ "core-graphics 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "dwmapi-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "gdi32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "objc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -837,6 +846,14 @@ dependencies = [ "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "xml-rs" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "zip" version = "0.1.16" diff --git a/Cargo.toml b/Cargo.toml index 1a6c350..6d3678e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.1" authors = [ "Thinkofdeath " ] [dependencies] -glutin = {git = "https://github.com/Thinkofname/glutin", branch = "hide-cursor-state-x11"} +glutin = {git = "https://github.com/tomaka/glutin", rev = "8ae2df68e"} byteorder = "0.5.0" hyper = "0.8.0" serde = "0.7.0"