diff options
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs index 4ebb5ef092c..46b123630d8 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -18,6 +18,7 @@ #![plugin(regex_macros)] +extern crate net_traits; extern crate "cookie" as cookie_rs; extern crate collections; extern crate flate2; @@ -30,22 +31,11 @@ extern crate openssl; extern crate profile; extern crate "rustc-serialize" as rustc_serialize; extern crate util; -extern crate stb_image; extern crate time; extern crate url; extern crate regex; -/// Image handling. -/// -/// It may be surprising that this goes in the network crate as opposed to the graphics crate. -/// However, image handling is generally very integrated with the network stack (especially where -/// caching is involved) and as a result it must live in here. -pub mod image { - pub mod base; - pub mod holder; -} - pub mod about_loader; pub mod file_loader; pub mod http_loader; @@ -53,7 +43,6 @@ pub mod data_loader; pub mod cookie; pub mod cookie_storage; pub mod image_cache_task; -pub mod local_image_cache; pub mod pub_domains; pub mod resource_task; pub mod storage_task; |