diff options
author | Joe Wilm <joe@jwilm.com> | 2016-02-21 19:44:54 -0800 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-02-21 19:45:35 -0800 |
commit | 5040c44f670ab1ce51faf3ae588002f7b4c0ffca (patch) | |
tree | fe5da8dc8f5f025a109464a225f271f9eedf0c03 /Cargo.lock | |
parent | 32bac943433610434f7d504114d6d409c8a698af (diff) | |
download | alacritty-5040c44f670ab1ce51faf3ae588002f7b4c0ffca.tar.gz alacritty-5040c44f670ab1ce51faf3ae588002f7b4c0ffca.zip |
Implement very basic glyph rasterization
There are several assumptions made at this point and very little (no)
error handling done.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 58 |
1 files changed, 41 insertions, 17 deletions
@@ -2,12 +2,17 @@ name = "alacritty" version = "0.1.0" dependencies = [ - "freetype 0.1.0 (git+https://github.com/servo/rust-freetype.git)", + "freetype-rs 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-fontconfig 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-fontconfig 0.2.0 (git+https://github.com/jwilm/rust-fontconfig)", ] [[package]] +name = "bitflags" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] name = "expat-sys" version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -17,19 +22,46 @@ dependencies = [ ] [[package]] -name = "freetype" -version = "0.1.0" -source = "git+https://github.com/servo/rust-freetype.git#d564ff90a3c69d987f5c015d7ec034cfaee21aff" +name = "freetype-rs" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "freetype-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] +name = "freetype-sys" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libz-sys 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "gcc" +version = "0.3.24" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] name = "libc" version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] +name = "libz-sys" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gcc 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] name = "make-cmd" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -42,27 +74,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "servo-fontconfig" version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/jwilm/rust-fontconfig#419135e5e1106ec0973dd4923bd9c70d8e438cc8" dependencies = [ "libc 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-fontconfig-sys 2.11.3 (registry+https://github.com/rust-lang/crates.io-index)", + "servo-fontconfig-sys 2.11.3 (git+https://github.com/jwilm/libfontconfig)", ] [[package]] name = "servo-fontconfig-sys" version = "2.11.3" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/jwilm/libfontconfig#1d7544dc1ff6a7d0f3a9e6a27b5373a89afa8c38" dependencies = [ "expat-sys 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", - "servo-freetype-sys 2.4.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "servo-freetype-sys" -version = "2.4.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ + "freetype-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] |