/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #[crate_id = "github.com/mozilla/servo#net:0.1"]; #[crate_type = "lib"]; #[crate_type = "dylib"]; #[crate_type = "rlib"]; #[feature(globs)]; #[feature(phase)]; #[phase(syntax, link)] extern crate log; extern crate collections; extern crate geom; extern crate http; extern crate servo_util = "util"; extern crate stb_image; extern crate png; extern crate serialize; extern crate sync; extern crate url; /// 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 file_loader; pub mod http_loader; pub mod data_loader; pub mod image_cache_task; pub mod local_image_cache; pub mod resource_task;