1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-18 13:55:23 -05:00

Upgrade dependencies

Upgrading glutin to the latest version allows building alacritty even
with old XRandr versions.

This is relevant for Debian machines (and other ancient systems).
This commit is contained in:
Sam Rijs 2018-03-01 06:52:42 +11:00 committed by Christian Duerr
parent 0afc86cba0
commit 8045737d58
3 changed files with 167 additions and 276 deletions

437
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -33,7 +33,7 @@ clap = "2"
fnv = "1" fnv = "1"
unicode-width = "0.1" unicode-width = "0.1"
arraydeque = "0.2" arraydeque = "0.2"
glutin = "0.12" glutin = "0.13"
clippy = { version = "*", optional = true } clippy = { version = "*", optional = true }
env_logger = "0.5" env_logger = "0.5"
base64 = "0.9.0" base64 = "0.9.0"
@ -52,7 +52,7 @@ nightly = []
bench = [] bench = []
[build-dependencies] [build-dependencies]
gl_generator = "0.8" gl_generator = "0.9"
[profile.release] [profile.release]
lto = true lto = true

View file

@ -6,7 +6,7 @@ description = "Font rendering using the best available solution per platform"
license = "Apache-2.0" license = "Apache-2.0"
[dependencies] [dependencies]
euclid = "0.16" euclid = "0.17"
libc = "0.2" libc = "0.2"
foreign-types = "0.3" foreign-types = "0.3"
log = "0.4" log = "0.4"