diff options
Diffstat (limited to 'src/components/util/util.rs')
-rw-r--r-- | src/components/util/util.rs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/components/util/util.rs b/src/components/util/util.rs new file mode 100644 index 00000000000..44431da502d --- /dev/null +++ b/src/components/util/util.rs @@ -0,0 +1,28 @@ +/* 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#util:0.1"]; +#[crate_type = "lib"]; + +#[feature(macro_rules, managed_boxes)]; + +extern mod extra; +extern mod geom; +extern mod native; + +pub mod cache; +pub mod geometry; +pub mod range; +pub mod time; +pub mod url; +pub mod vec; +pub mod debug; +pub mod io; +pub mod task; +pub mod workqueue; +pub mod namespace; +pub mod sort; +pub mod smallvec; +pub mod concurrentmap; + |