diff options
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs index 666e7bdb2d5..d5dfbf74c4f 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -17,6 +17,8 @@ extern crate ipc_channel; #[macro_use] extern crate lazy_static; #[macro_use] extern crate log; +extern crate malloc_size_of; +#[macro_use] extern crate malloc_size_of_derive; #[macro_use] #[no_link] extern crate matches; #[macro_use] extern crate mime; @@ -24,9 +26,12 @@ extern crate mime_guess; extern crate msg; extern crate net_traits; extern crate openssl; +#[macro_use] extern crate profile_traits; #[macro_use] extern crate serde; extern crate serde_json; +extern crate servo_allocator; +extern crate servo_arc; extern crate servo_config; extern crate servo_url; extern crate time; |