diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-03-05 16:48:01 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-03-12 14:23:20 +0100 |
commit | 67d983cb1256e76c42451460116bd98cb3f31db1 (patch) | |
tree | 7d2e30be53ede37d14388569aa1443dd0c6aceaa /components/script/lib.rs | |
parent | 324e22db030ba73452dfc4ec455534fb144f585b (diff) | |
download | servo-67d983cb1256e76c42451460116bd98cb3f31db1.tar.gz servo-67d983cb1256e76c42451460116bd98cb3f31db1.zip |
Switch from servo/angle to the mozangle crate
https://github.com/servo/mozangle
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index e28bf016e55..bccfda96fdb 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -21,7 +21,6 @@ #![plugin(script_plugins)] #![cfg_attr(not(feature = "unrooted_must_root_lint"), allow(unknown_lints))] -extern crate angle; extern crate app_units; extern crate audio_video_metadata; extern crate base64; @@ -64,6 +63,7 @@ extern crate metrics; extern crate mime; extern crate mime_guess; extern crate mitochondria; +extern crate mozangle; #[macro_use] extern crate mozjs as js; extern crate msg; |