diff options
author | Joe Wilm <joe@jwilm.com> | 2017-06-27 09:29:09 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2017-06-27 09:29:09 -0700 |
commit | 63787d0bf0bcf18422b97aa7f8dea2024948c176 (patch) | |
tree | 2923904db81f6d90637120f9a3853daf701de344 /font/Cargo.toml | |
parent | e675044cfc7e7348afe103ea44329b22a9a4427d (diff) | |
download | alacritty-63787d0bf0bcf18422b97aa7f8dea2024948c176.tar.gz alacritty-63787d0bf0bcf18422b97aa7f8dea2024948c176.zip |
Use foreign-types from crates.io
We had previously vendored a very early version of this package before
it was ever published.
Diffstat (limited to 'font/Cargo.toml')
-rw-r--r-- | font/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font/Cargo.toml b/font/Cargo.toml index 17ba78ed..98c7eaad 100644 --- a/font/Cargo.toml +++ b/font/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] euclid = "0.12.0" libc = "0.2" -ffi-util = { path = "../ffi-util" } +foreign-types = "0.2.0" log = "0.3" [target.'cfg(not(target_os = "macos"))'.dependencies] |