diff options
author | Joe Wilm <joe@jwilm.com> | 2016-02-21 15:20:03 -0800 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-02-21 15:20:03 -0800 |
commit | 2a7dc1deb825f9f1db6de8b50656ef420ff41a44 (patch) | |
tree | e7206c9a4187232bccee88ee7cfa5e1d14ecbad4 /Cargo.lock | |
parent | 621776cd94890936b24f3abb8b7ec1f36dad9150 (diff) | |
download | alacritty-2a7dc1deb825f9f1db6de8b50656ef420ff41a44.tar.gz alacritty-2a7dc1deb825f9f1db6de8b50656ef420ff41a44.zip |
Add function for listing font names on linux
This function isn't exactly useful, but it's working ffi with the
fontconfig library. Woo! Next step will be returning some objects with
more information (like font path so we can start rendering glyphs!).
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 00000000..5afbf7ed --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,68 @@ +[root] +name = "alacritty" +version = "0.1.0" +dependencies = [ + "freetype 0.1.0 (git+https://github.com/servo/rust-freetype.git)", + "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)", +] + +[[package]] +name = "expat-sys" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "make-cmd 0.1.0 (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 = "freetype" +version = "0.1.0" +source = "git+https://github.com/servo/rust-freetype.git#d564ff90a3c69d987f5c015d7ec034cfaee21aff" +dependencies = [ + "libc 0.2.7 (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 = "make-cmd" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "pkg-config" +version = "0.3.7" +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" +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)", +] + +[[package]] +name = "servo-fontconfig-sys" +version = "2.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +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 = [ + "pkg-config 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + |