diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-05-01 21:48:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-01 21:48:33 -0500 |
commit | 4426236adfac2de779ff68b47176f7bf36a74e20 (patch) | |
tree | adaf42c20eeff4d205f839a599a8293ffc58ad5d /components/script_plugins | |
parent | 8850a01b81f87b481eb56287b7928c64890ba1a9 (diff) | |
parent | 10478b4fa3334635827aefd0cb8baa4b921d44f0 (diff) | |
download | servo-4426236adfac2de779ff68b47176f7bf36a74e20.tar.gz servo-4426236adfac2de779ff68b47176f7bf36a74e20.zip |
Auto merge of #16681 - mbrubeck:slice_patterns, r=emilio
Stop using unstable slice_patterns feature
cc #5286
---
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [ ] There are tests for these changes OR
- [x] These changes do not require tests because no functionality changed
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16681)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script_plugins')
-rw-r--r-- | components/script_plugins/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script_plugins/lib.rs b/components/script_plugins/lib.rs index 3c0f67fa6ab..b35acdf3109 100644 --- a/components/script_plugins/lib.rs +++ b/components/script_plugins/lib.rs @@ -15,7 +15,7 @@ #![deny(unsafe_code)] -#![feature(box_syntax, plugin, plugin_registrar, rustc_private, slice_patterns)] +#![feature(box_syntax, plugin, plugin_registrar, rustc_private)] #[macro_use] extern crate rustc; |