diff options
author | Chet Gurevitch <chetgurevitch@protonmail.com> | 2017-10-01 20:47:48 -0700 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-12-23 21:39:09 -0800 |
commit | 1117bb5fda288c8023419ceeaddc15c04c74e798 (patch) | |
tree | 6ee686b5b826c4423f86e641d7d18af77b430235 /font/Cargo.toml | |
parent | 3472921c7d0b20e57f3aa953f92b525ef2729287 (diff) | |
download | alacritty-1117bb5fda288c8023419ceeaddc15c04c74e798.tar.gz alacritty-1117bb5fda288c8023419ceeaddc15c04c74e798.zip |
Update deps
Diffstat (limited to 'font/Cargo.toml')
-rw-r--r-- | font/Cargo.toml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/font/Cargo.toml b/font/Cargo.toml index 2a97f0bd..e111cbdf 100644 --- a/font/Cargo.toml +++ b/font/Cargo.toml @@ -6,17 +6,17 @@ description = "Font rendering using the best available solution per platform" license = "Apache-2.0" [dependencies] -euclid = "0.12.0" +euclid = "0.13" libc = "0.2" -foreign-types = "0.2.0" +foreign-types = "0.3" log = "0.3" [target.'cfg(not(target_os = "macos"))'.dependencies] servo-fontconfig = { git = "https://github.com/jwilm/rust-fontconfig", branch = "updated-2017-10-8" } -freetype-rs = "0.13.0" +freetype-rs = "0.13" [target.'cfg(target_os = "macos")'.dependencies] -core-foundation = "0.3.0" -core-text = "6.1.0" -core-graphics = "0.8.1" -core-foundation-sys = "0.3.1" +core-foundation = "0.4" +core-text = "8" +core-graphics = "0.12" +core-foundation-sys = "0.4" |