diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-03-25 13:52:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-25 16:52:03 +0300 |
commit | 637c775a9997525dc56b2356b8171fd00ef5f0d2 (patch) | |
tree | 8426f67b4f24564cbdcbcb228b56f8849258ad46 /font | |
parent | 69ca8951761cb0f28675963cb49d15200aea4059 (diff) | |
download | alacritty-637c775a9997525dc56b2356b8171fd00ef5f0d2.tar.gz alacritty-637c775a9997525dc56b2356b8171fd00ef5f0d2.zip |
Update Linux/BSD font dependencies
This updates font dependencies to make use of the newly unified
freetype-sys crate, allowing us to get rid of Alacritty's patch section
in the Cargo.toml.
Diffstat (limited to 'font')
-rw-r--r-- | font/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/font/Cargo.toml b/font/Cargo.toml index 4fc1a3b5..f647c275 100644 --- a/font/Cargo.toml +++ b/font/Cargo.toml @@ -13,8 +13,8 @@ foreign-types = "0.5" log = "0.4" [target.'cfg(not(any(target_os = "macos", windows)))'.dependencies] -servo-fontconfig = "0.4.0" -freetype-rs = "0.23" +servo-fontconfig = "0.5.0" +freetype-rs = "0.24" [target.'cfg(target_os = "macos")'.dependencies] core-foundation = "0.6" |