diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2015-09-25 17:17:50 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2015-09-29 14:34:49 -0700 |
commit | 371e6897e18aecbd3e2cff17d2213b17a4271851 (patch) | |
tree | 65a5e5725f5a94e8909f2bc204c9b58e28e8956a /components/gfx/lib.rs | |
parent | 062493fac6968643fd3744fa06e28ee2bb7e0c5a (diff) | |
download | servo-371e6897e18aecbd3e2cff17d2213b17a4271851.tar.gz servo-371e6897e18aecbd3e2cff17d2213b17a4271851.zip |
Break text runs by unicode script
Diffstat (limited to 'components/gfx/lib.rs')
-rw-r--r-- | components/gfx/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index 99da454616d..80fe5ced4aa 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -72,6 +72,7 @@ extern crate smallvec; extern crate string_cache; extern crate style; extern crate time; +extern crate unicode_script; extern crate url; |