aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/util/util.rs
diff options
context:
space:
mode:
authorJack Moffitt <jack@metajack.im>2014-08-28 09:34:23 -0600
committerJack Moffitt <jack@metajack.im>2014-09-08 20:21:42 -0600
commitc6ab60dbfc6da7b4f800c9e40893c8b58413960c (patch)
treed1d74076cf7fa20e4f77ec7cb82cae98b67362cb /src/components/util/util.rs
parentdb2f642c32fc5bed445bb6f2e45b0f6f0b4342cf (diff)
downloadservo-c6ab60dbfc6da7b4f800c9e40893c8b58413960c.tar.gz
servo-c6ab60dbfc6da7b4f800c9e40893c8b58413960c.zip
Cargoify servo
Diffstat (limited to 'src/components/util/util.rs')
-rw-r--r--src/components/util/util.rs48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/components/util/util.rs b/src/components/util/util.rs
deleted file mode 100644
index b74ed076e75..00000000000
--- a/src/components/util/util.rs
+++ /dev/null
@@ -1,48 +0,0 @@
-/* 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_name = "util"]
-#![crate_type = "rlib"]
-
-
-#![feature(macro_rules,unsafe_destructor)]
-
-#![feature(phase)]
-#[phase(plugin, link)]
-extern crate log;
-
-extern crate debug;
-extern crate alloc;
-extern crate azure;
-extern crate collections;
-extern crate geom;
-extern crate getopts;
-extern crate layers;
-extern crate libc;
-extern crate native;
-extern crate rand;
-extern crate rustrt;
-extern crate serialize;
-extern crate sync;
-#[cfg(target_os="macos")]
-extern crate task_info;
-extern crate std_time = "time";
-extern crate string_cache;
-
-pub mod atom;
-pub mod cache;
-pub mod debug_utils;
-pub mod geometry;
-pub mod logical_geometry;
-pub mod memory;
-pub mod namespace;
-pub mod opts;
-pub mod range;
-pub mod smallvec;
-pub mod sort;
-pub mod str;
-pub mod task;
-pub mod time;
-pub mod vec;
-pub mod workqueue;