diff options
author | Ms2ger <Ms2ger@gmail.com> | 2017-02-20 11:39:43 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2017-02-20 11:40:03 +0100 |
commit | f625c76d46d348912aba5147f6d898d4128737d9 (patch) | |
tree | a62b93c49deab075fffd8ed9f932da7af1d71563 /components/servo/lib.rs | |
parent | 30a31fb744a2fd2b11b901d722704fe458df3022 (diff) | |
download | servo-f625c76d46d348912aba5147f6d898d4128737d9.tar.gz servo-f625c76d46d348912aba5147f6d898d4128737d9.zip |
Add more public crates to libservo.
Fixes #15640.
Diffstat (limited to 'components/servo/lib.rs')
-rw-r--r-- | components/servo/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/servo/lib.rs b/components/servo/lib.rs index 6e273601926..3ba9f33d5d3 100644 --- a/components/servo/lib.rs +++ b/components/servo/lib.rs @@ -45,8 +45,11 @@ pub extern crate script; pub extern crate script_traits; pub extern crate script_layout_interface; pub extern crate servo_config; +pub extern crate servo_geometry; pub extern crate servo_url; pub extern crate style; +pub extern crate style_traits; +pub extern crate webrender_traits; pub extern crate webvr; pub extern crate webvr_traits; @@ -54,7 +57,6 @@ pub extern crate webvr_traits; extern crate webdriver_server; extern crate webrender; -extern crate webrender_traits; #[cfg(feature = "webdriver")] fn webdriver(port: u16, constellation: Sender<ConstellationMsg>) { |