Auto merge of #8920 - romankl:core-feature, r=Ms2ger

remove the "core" feature attribute from canvas

The core feature is marked as stable and gives this nice warning:
```
servo/components/canvas_traits/lib.rs:7:12: 7:16 warning: this feature is stable. attribute no longer needed, #[warn(stable_features)] on by default
/servo/components/canvas_traits/lib.rs:7 #![feature(core)]
```
This commit removes the usage of this feature.

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8920)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-12-11 02:39:37 +05:30
commit 996c0a60b8
2 changed files with 0 additions and 2 deletions

View file

@ -2,7 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#![feature(core)]
#![feature(nonzero)] #![feature(nonzero)]
#![feature(slice_bytes)] #![feature(slice_bytes)]
#![feature(vec_push_all)] #![feature(vec_push_all)]

View file

@ -4,7 +4,6 @@
#![crate_name = "canvas_traits"] #![crate_name = "canvas_traits"]
#![crate_type = "rlib"] #![crate_type = "rlib"]
#![feature(core)]
#![feature(custom_derive)] #![feature(custom_derive)]
#![feature(nonzero)] #![feature(nonzero)]
#![feature(plugin)] #![feature(plugin)]