Fix compilation on new nightly.

Compilation on rustc 1.33.0-nightly (c76f3c374 2019-01-18) failed with
```
error: the feature `cfg_target_vendor` has been stable since 1.33.0 and no longer requires an attribute to enable
  --> src/lib.rs:19:12
   |
19 | #![feature(cfg_target_vendor)]
   |            ^^^^^^^^^^^^^^^^^
   |
```

Removed the attribute to make it compile.
This commit is contained in:
Cyryl Płotnicki 2019-01-20 09:33:55 +00:00
parent fcdf1bcd05
commit b570ccfd2d
1 changed files with 0 additions and 1 deletions

View File

@ -16,7 +16,6 @@
#![feature(abi_unadjusted)]
#![feature(linkage)]
#![feature(lang_items)]
#![feature(cfg_target_vendor)]
#![allow(unused_features)]
#![no_builtins]
#![cfg_attr(feature = "compiler-builtins", feature(staged_api))]