diff options
author | meh <meh@schizofreni.co> | 2015-08-29 23:50:56 +0200 |
---|---|---|
committer | meh <meh@schizofreni.co> | 2015-08-31 00:15:29 +0200 |
commit | bfcaf7ef1ad1c834fee22d1f69b410e4dffbe2e3 (patch) | |
tree | 1b883a61fcf322be79de079a9c3a0a5651f2d232 /components/servo/main.rs | |
parent | ccb8e4655759341e1b45139217cae7d8c2f7ec48 (diff) | |
download | servo-bfcaf7ef1ad1c834fee22d1f69b410e4dffbe2e3.tar.gz servo-bfcaf7ef1ad1c834fee22d1f69b410e4dffbe2e3.zip |
Re-export crates needed to use the Servo Rust API
Diffstat (limited to 'components/servo/main.rs')
-rw-r--r-- | components/servo/main.rs | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/components/servo/main.rs b/components/servo/main.rs index e96703026fe..530bbf639ee 100644 --- a/components/servo/main.rs +++ b/components/servo/main.rs @@ -19,13 +19,7 @@ // The Servo engine extern crate servo; -// Window graphics compositing and message dispatch -extern crate compositing; -// Servo networking -extern crate net; -extern crate net_traits; -// Servo common utilitiess -extern crate util; + // The window backed by glutin extern crate glutin_app as app; extern crate time; @@ -35,11 +29,11 @@ extern crate env_logger; #[macro_use] extern crate android_glue; -use compositing::windowing::WindowEvent; -use net_traits::hosts; use servo::Browser; +use servo::compositing::windowing::WindowEvent; +use servo::net_traits::hosts; +use servo::util::opts; use std::rc::Rc; -use util::opts; #[cfg(target_os="android")] use std::borrow::ToOwned; |