diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2018-10-06 00:40:48 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2018-10-06 01:11:55 +0200 |
commit | 784fbb2bc17d311fe3322cc48d2dca8a902161ca (patch) | |
tree | 2194d8d1bb0fbb7d7c50f3fbcc83b40bb28b3ea8 /components/script/lib.rs | |
parent | a2e3dd4e8636b7125140850dc4bc95433e801e77 (diff) | |
download | servo-784fbb2bc17d311fe3322cc48d2dca8a902161ca.tar.gz servo-784fbb2bc17d311fe3322cc48d2dca8a902161ca.zip |
Merge some byte swap/premultiply functions in their own crate
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 097f69d7808..a2ece5ce32c 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -78,6 +78,7 @@ extern crate num_traits; extern crate offscreen_gl_context; extern crate parking_lot; extern crate phf; +extern crate pixels; #[macro_use] extern crate profile_traits; extern crate ref_filter_map; |