aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/lib.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-02-12 11:06:50 -0700
committerbors-servo <metajack+bors@gmail.com>2015-02-12 11:06:50 -0700
commitfab80925818e53bfb92ffa2684a6834bb9f70f29 (patch)
treee5154fd6a2e60fc9ff64525558532bb0d2fae93d /components/layout/lib.rs
parent29d24a5049cda10111bb36f3ca2d798e68137107 (diff)
parent2b0eb98c1d0889d7966b2341528417cb3f916911 (diff)
downloadservo-fab80925818e53bfb92ffa2684a6834bb9f70f29.tar.gz
servo-fab80925818e53bfb92ffa2684a6834bb9f70f29.zip
auto merge of #4902 : servo/servo/warnings, r=jdm
Diffstat (limited to 'components/layout/lib.rs')
-rw-r--r--components/layout/lib.rs17
1 files changed, 15 insertions, 2 deletions
diff --git a/components/layout/lib.rs b/components/layout/lib.rs
index 98e88360a53..a73ea6a7a0f 100644
--- a/components/layout/lib.rs
+++ b/components/layout/lib.rs
@@ -2,12 +2,25 @@
* 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/. */
-#![feature(thread_local, unsafe_destructor, box_syntax, plugin, int_uint)]
+#![feature(alloc)]
+#![feature(box_syntax)]
+#![feature(collections)]
+#![feature(core)]
+#![feature(hash)]
+#![feature(int_uint)]
+#![feature(io)]
+#![feature(libc)]
+#![feature(path)]
+#![feature(plugin)]
+#![feature(rustc_private)]
+#![feature(std_misc)]
+#![feature(thread_local)]
+#![feature(unicode)]
+#![feature(unsafe_destructor)]
#![deny(unsafe_blocks)]
#![allow(unrooted_must_root)]
#![allow(missing_copy_implementations)]
-#![allow(unstable)]
#[macro_use]
extern crate log;