Fix Rust's hint about proc_macro

The feature `proc_macro` has been stable since 1.29.0 and no longer
requires an attribute to enable
This commit is contained in:
Jörg Sommer 2018-08-31 14:04:42 +02:00
parent 7112b79859
commit 58d06f82a2

View File

@ -3,7 +3,7 @@
//! shared by client and server code. //! shared by client and server code.
#![deny(missing_debug_implementations, missing_docs)] #![deny(missing_debug_implementations, missing_docs)]
#![feature(proc_macro, try_from)] #![feature(try_from)]
extern crate futures; extern crate futures;
extern crate http; extern crate http;