mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
A rebuild after touching components/profile/mem.rs now takes 48 seconds (and only rebuilds `profile` and `servo`) which is much lower than it used to be. In comparison, a rebuild after touching components/profile_traits/mem.rs takes 294 seconds and rebuilds many more crates. This change also removes some unnecessary crate dependencies in `net` and `net_traits`.
15 lines
459 B
Rust
15 lines
459 B
Rust
/* 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/. */
|
|
|
|
#![cfg_attr(test, feature(net, alloc, path, io))]
|
|
|
|
extern crate net;
|
|
extern crate net_traits;
|
|
extern crate url;
|
|
extern crate util;
|
|
|
|
#[cfg(test)] mod cookie;
|
|
#[cfg(test)] mod data_loader;
|
|
#[cfg(test)] mod mime_classifier;
|
|
#[cfg(test)] mod resource_task;
|