diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-02-12 20:01:38 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-02-12 20:05:14 +0100 |
commit | e921ce859e0b29fefbeb2f1ad0435faa0730aa79 (patch) | |
tree | 5fce96427e4a085621528605162a8b7394da91e7 /components/script/lib.rs | |
parent | fab80925818e53bfb92ffa2684a6834bb9f70f29 (diff) | |
download | servo-e921ce859e0b29fefbeb2f1ad0435faa0730aa79.tar.gz servo-e921ce859e0b29fefbeb2f1ad0435faa0730aa79.zip |
Fix some warnings in script.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 6cbf6943e75..cedb7d361d5 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -2,12 +2,23 @@ * 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(unsafe_destructor, plugin, box_syntax, int_uint, core)] +#![feature(alloc)] +#![feature(box_syntax)] +#![feature(collections)] +#![feature(core)] +#![feature(hash)] +#![feature(int_uint)] +#![feature(io)] +#![feature(libc)] +#![feature(plugin)] +#![feature(rustc_private)] +#![feature(std_misc)] +#![feature(unicode)] +#![feature(unsafe_destructor)] #![deny(unsafe_blocks)] #![allow(non_snake_case)] #![allow(missing_copy_implementations)] -#![allow(unstable)] #![doc="The script crate contains all matters DOM."] |