diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-07-27 19:35:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 19:35:15 +0000 |
commit | d85f53dbe343cc939acb1fad7b69ba52df81f8e9 (patch) | |
tree | b9d5c7525e5f38fe0a878262db26c0c867e14247 | |
parent | c69067e1e92d70fd9088195460a320c914330d74 (diff) | |
download | alacritty-d85f53dbe343cc939acb1fad7b69ba52df81f8e9.tar.gz alacritty-d85f53dbe343cc939acb1fad7b69ba52df81f8e9.zip |
Downgrade glutin version
The glutin version bump to 0.27.0 has introduced a lot of new issues and
crashes to Alacritty due to the connected winit update. Since it doesn't
solve any major issues downgrading glutin temporarily should improve
Alacritty's reliability.
-rw-r--r-- | alacritty/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index 1dd521a6..d78bc516 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -25,7 +25,7 @@ fnv = "1" serde = { version = "1", features = ["derive"] } serde_yaml = "0.8" serde_json = "1" -glutin = { version = "0.27.0", default-features = false, features = ["serde"] } +glutin = { version = "0.26.0", default-features = false, features = ["serde"] } notify = "4" parking_lot = "0.11.0" crossfont = { version = "0.3.0", features = ["force_system_fontconfig"] } |