mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
20 lines
578 B
Rust
20 lines
578 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(plugin, custom_derive, heap_api))]
|
|
#![cfg_attr(test, plugin(plugins))]
|
|
#![feature(alloc)]
|
|
|
|
extern crate alloc;
|
|
extern crate app_units;
|
|
extern crate euclid;
|
|
extern crate libc;
|
|
extern crate util;
|
|
|
|
#[cfg(test)] mod cache;
|
|
#[cfg(test)] mod logical_geometry;
|
|
#[cfg(test)] mod thread;
|
|
#[cfg(test)] mod vec;
|
|
#[cfg(test)] mod str;
|
|
#[cfg(test)] mod opts;
|