Update to rustc 1.31.0-nightly (fddcd316a 2018-10-05)
This commit is contained in:
parent
35d5204cab
commit
6aee65a6f1
7 changed files with 16 additions and 15 deletions
maud
maud_extras
maud_macros/src
|
@ -43,7 +43,7 @@ pub use maud_macros::{html, html_debug};
|
|||
/// # Example
|
||||
///
|
||||
/// ```rust
|
||||
/// # #![feature(proc_macro_non_items)]
|
||||
/// # #![feature(proc_macro_hygiene)]
|
||||
/// use maud::{html, Markup, Render};
|
||||
///
|
||||
/// /// Provides a shorthand for linking to a CSS stylesheet.
|
||||
|
@ -134,7 +134,7 @@ pub use maud_htmlescape::Escaper;
|
|||
/// A minimal web page:
|
||||
///
|
||||
/// ```rust
|
||||
/// # #![feature(proc_macro_non_items)]
|
||||
/// # #![feature(proc_macro_hygiene)]
|
||||
/// use maud::{DOCTYPE, html};
|
||||
///
|
||||
/// let markup = html! {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(proc_macro_non_items)]
|
||||
#![feature(proc_macro_hygiene)]
|
||||
|
||||
extern crate maud;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(proc_macro_non_items)]
|
||||
#![feature(proc_macro_hygiene)]
|
||||
|
||||
extern crate maud;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(proc_macro_non_items)]
|
||||
#![feature(proc_macro_hygiene)]
|
||||
|
||||
extern crate maud;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(proc_macro_non_items)]
|
||||
#![feature(proc_macro_hygiene)]
|
||||
|
||||
extern crate maud;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(proc_macro_non_items)]
|
||||
#![feature(proc_macro_hygiene)]
|
||||
|
||||
extern crate maud;
|
||||
|
||||
|
@ -9,7 +9,7 @@ use maud::{Markup, Render, html};
|
|||
/// # Example
|
||||
///
|
||||
/// ```rust
|
||||
/// # #![feature(proc_macro_non_items)]
|
||||
/// # #![feature(proc_macro_hygiene)]
|
||||
/// # extern crate maud;
|
||||
/// # extern crate maud_extras;
|
||||
/// # use maud::html;
|
||||
|
@ -35,7 +35,7 @@ impl<T: AsRef<str>> Render for Css<T> {
|
|||
/// # Example
|
||||
///
|
||||
/// ```rust
|
||||
/// # #![feature(proc_macro_non_items)]
|
||||
/// # #![feature(proc_macro_hygiene)]
|
||||
/// #
|
||||
/// # extern crate maud;
|
||||
/// # extern crate maud_extras;
|
||||
|
@ -62,7 +62,7 @@ impl<T: AsRef<str>> Render for Js<T> {
|
|||
/// # Example
|
||||
///
|
||||
/// ```rust
|
||||
/// # #![feature(proc_macro_non_items)]
|
||||
/// # #![feature(proc_macro_hygiene)]
|
||||
/// # extern crate maud;
|
||||
/// # extern crate maud_extras;
|
||||
/// # use maud::html;
|
||||
|
@ -88,7 +88,7 @@ impl<T: AsRef<str>, U: AsRef<str>> Render for Meta<T, U> {
|
|||
/// # Example
|
||||
///
|
||||
/// ```rust
|
||||
/// # #![feature(proc_macro_non_items)]
|
||||
/// # #![feature(proc_macro_hygiene)]
|
||||
/// # extern crate maud;
|
||||
/// # extern crate maud_extras;
|
||||
/// # use maud::html;
|
||||
|
@ -114,7 +114,7 @@ impl<T: AsRef<str>> Render for Title<T> {
|
|||
/// # Example
|
||||
///
|
||||
/// ```rust
|
||||
/// # #![feature(proc_macro_non_items)]
|
||||
/// # #![feature(proc_macro_hygiene)]
|
||||
/// # extern crate maud;
|
||||
/// # extern crate maud_extras;
|
||||
/// # use maud::html;
|
||||
|
@ -140,7 +140,7 @@ impl<T: AsRef<str>> Render for Charset<T> {
|
|||
/// # Example
|
||||
///
|
||||
/// ```rust
|
||||
/// # #![feature(proc_macro_non_items)]
|
||||
/// # #![feature(proc_macro_hygiene)]
|
||||
/// # extern crate maud;
|
||||
/// # extern crate maud_extras;
|
||||
/// # use maud::html;
|
||||
|
@ -166,7 +166,7 @@ impl<T: AsRef<str>, U: AsRef<str>> Render for MetaProperty<T, U> {
|
|||
/// # Example
|
||||
///
|
||||
/// ```rust
|
||||
/// # #![feature(proc_macro_non_items)]
|
||||
/// # #![feature(proc_macro_hygiene)]
|
||||
/// # extern crate maud;
|
||||
/// # extern crate maud_extras;
|
||||
/// # use maud::html;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#![feature(proc_macro_def_site)]
|
||||
#![feature(proc_macro_diagnostic)]
|
||||
#![feature(proc_macro_non_items)]
|
||||
#![feature(proc_macro_hygiene)]
|
||||
#![feature(proc_macro_quote)]
|
||||
#![feature(proc_macro_span)]
|
||||
#![feature(tool_lints)]
|
||||
|
|
Loading…
Add table
Reference in a new issue