From 0a30ee2e7beb98d19c5150aca00517fa0cc24338 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Wed, 11 Mar 2020 20:42:41 +0100 Subject: [PATCH] Remove depedency on servo-freetype-sys My second attempt at removing the servo-freetype-sys depedency. Now with the downgraded freetype2 version, this should hopefully build from source without any troubles. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 54eddc38bc..e8ea8f2fb8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,8 +37,8 @@ expat-sys = "2.1.5" glutin = "0.21.0" [target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies] -servo-fontconfig-sys = "4.0.0" -servo-freetype-sys = "4.0.0" +servo-fontconfig-sys = { git = "https://github.com/chrisduerr/libfontconfig", branch = "bump_freetype_sys" } +freetype-sys = "0.11.0" [target.'cfg(target_os = "linux")'.dependencies] x11 = { version = "2.0.0", features = ["xlib"] }