diff options
author | Joe Wilm <joe@jwilm.com> | 2016-07-30 12:47:22 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-07-30 12:52:53 -0700 |
commit | 66e7228f41a9fef79fec2cf57d8e9ac92e936855 (patch) | |
tree | 498421f6bc1ebeb06d39c8b901d45ff4c90a1b6b /Cargo.lock | |
parent | c687eca3fadef5d64daf5fce5582e0037c45d5b4 (diff) | |
download | alacritty-66e7228f41a9fef79fec2cf57d8e9ac92e936855.tar.gz alacritty-66e7228f41a9fef79fec2cf57d8e9ac92e936855.zip |
Input expects modifier keys from Glutin
This is experimental on a separate branch of Glutin. It's intended to
fix the problem of certain key events not being delivered on alt-tab and
breaking the modifier state tracking.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -7,7 +7,7 @@ dependencies = [ "errno 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "font 0.1.0", "gl_generator 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "glutin 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "glutin 0.6.1 (git+https://github.com/jwilm/glutin?rev=d287fa96e3a8b2568b189067eedd28807c4568d6)", "libc 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "notify 2.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -285,9 +285,10 @@ dependencies = [ [[package]] name = "glutin" version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/jwilm/glutin?rev=d287fa96e3a8b2568b189067eedd28807c4568d6#d287fa96e3a8b2568b189067eedd28807c4568d6" dependencies = [ "android_glue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "cgl 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "cocoa 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |