diff options
Diffstat (limited to 'src/components/net/net.rs')
-rw-r--r-- | src/components/net/net.rs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/components/net/net.rs b/src/components/net/net.rs new file mode 100644 index 00000000000..7378c7c059b --- /dev/null +++ b/src/components/net/net.rs @@ -0,0 +1,34 @@ +/* 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"]; + +#[feature(globs, managed_boxes)]; + +extern mod geom; +extern mod http; +extern mod servo_util = "util"; +extern mod stb_image; +extern mod extra; +extern mod png; + +/// 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; +pub mod util; + |