Enable proc_macro_non_items feature flag

This commit is contained in:
Chris Stadler 2018-04-27 20:20:02 -04:00 committed by Chris Wong
parent 41f7744fe1
commit e606e64ef2
6 changed files with 14 additions and 0 deletions

View file

@ -1,5 +1,6 @@
#![feature(plugin)] #![feature(plugin)]
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(proc_macro_non_items)]
#![plugin(maud_lints)] #![plugin(maud_lints)]

View file

@ -1,5 +1,6 @@
#![feature(plugin)] #![feature(plugin)]
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(proc_macro_non_items)]
#![plugin(maud_lints)] #![plugin(maud_lints)]

View file

@ -1,5 +1,6 @@
#![feature(plugin)] #![feature(plugin)]
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(proc_macro_non_items)]
#![plugin(maud_lints)] #![plugin(maud_lints)]

View file

@ -1,5 +1,6 @@
#![feature(plugin)] #![feature(plugin)]
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(proc_macro_non_items)]
#![plugin(maud_lints)] #![plugin(maud_lints)]

View file

@ -1,5 +1,6 @@
#![feature(plugin)] #![feature(plugin)]
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(proc_macro_non_items)]
#![plugin(maud_lints)] #![plugin(maud_lints)]
@ -13,6 +14,7 @@ use maud::{Markup, Render, html};
/// ///
/// ```rust /// ```rust
/// # #![feature(proc_macro)] /// # #![feature(proc_macro)]
/// # #![feature(proc_macro_non_items)]
/// # extern crate maud; /// # extern crate maud;
/// # extern crate maud_extras; /// # extern crate maud_extras;
/// # use maud::html; /// # use maud::html;
@ -39,6 +41,8 @@ impl<T: AsRef<str>> Render for Css<T> {
/// ///
/// ```rust /// ```rust
/// # #![feature(proc_macro)] /// # #![feature(proc_macro)]
/// # #![feature(proc_macro_non_items)]
/// #
/// # extern crate maud; /// # extern crate maud;
/// # extern crate maud_extras; /// # extern crate maud_extras;
/// # use maud::html; /// # use maud::html;
@ -65,6 +69,7 @@ impl<T: AsRef<str>> Render for Js<T> {
/// ///
/// ```rust /// ```rust
/// # #![feature(proc_macro)] /// # #![feature(proc_macro)]
/// # #![feature(proc_macro_non_items)]
/// # extern crate maud; /// # extern crate maud;
/// # extern crate maud_extras; /// # extern crate maud_extras;
/// # use maud::html; /// # use maud::html;
@ -91,6 +96,7 @@ impl<T: AsRef<str>, U: AsRef<str>> Render for Meta<T, U> {
/// ///
/// ```rust /// ```rust
/// # #![feature(proc_macro)] /// # #![feature(proc_macro)]
/// # #![feature(proc_macro_non_items)]
/// # extern crate maud; /// # extern crate maud;
/// # extern crate maud_extras; /// # extern crate maud_extras;
/// # use maud::html; /// # use maud::html;
@ -117,6 +123,7 @@ impl<T: AsRef<str>> Render for Title<T> {
/// ///
/// ```rust /// ```rust
/// # #![feature(proc_macro)] /// # #![feature(proc_macro)]
/// # #![feature(proc_macro_non_items)]
/// # extern crate maud; /// # extern crate maud;
/// # extern crate maud_extras; /// # extern crate maud_extras;
/// # use maud::html; /// # use maud::html;
@ -143,6 +150,7 @@ impl<T: AsRef<str>> Render for Charset<T> {
/// ///
/// ```rust /// ```rust
/// # #![feature(proc_macro)] /// # #![feature(proc_macro)]
/// # #![feature(proc_macro_non_items)]
/// # extern crate maud; /// # extern crate maud;
/// # extern crate maud_extras; /// # extern crate maud_extras;
/// # use maud::html; /// # use maud::html;
@ -169,6 +177,7 @@ impl<T: AsRef<str>, U: AsRef<str>> Render for MetaProperty<T, U> {
/// ///
/// ```rust /// ```rust
/// # #![feature(proc_macro)] /// # #![feature(proc_macro)]
/// # #![feature(proc_macro_non_items)]
/// # extern crate maud; /// # extern crate maud;
/// # extern crate maud_extras; /// # extern crate maud_extras;
/// # use maud::html; /// # use maud::html;

View file

@ -1,4 +1,5 @@
#![feature(proc_macro)] #![feature(proc_macro)]
#![feature(proc_macro_non_items)]
#![doc(html_root_url = "https://docs.rs/maud_macros/0.17.3")] #![doc(html_root_url = "https://docs.rs/maud_macros/0.17.3")]