Move generic util code from servo-gfx to top-level servo-util.

This commit is contained in:
Josh Aas 2013-04-16 17:12:26 -05:00
parent 9a12ebf283
commit 95b5aaf3f0
6 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,18 @@
/* 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/. */
#[link(name = "servo_util",
vers = "0.1",
uuid = "48421f49-17cf-41c5-a68e-ff669ff2ecd5",
url = "http://servo.org/")];
#[crate_type = "lib"];
extern mod std;
pub mod cache;
pub mod range;
pub mod time;
pub mod url;
pub mod vec;