Rocket can now compile on stable (#723)
This commit is contained in:
parent
7b9cf4cb18
commit
c80cecf61e
3 changed files with 0 additions and 22 deletions
|
@ -1,17 +0,0 @@
|
|||
[tasks.build-verbose]
|
||||
condition = { channels = ["nightly"] }
|
||||
|
||||
[tasks.build-verbose.windows]
|
||||
condition = { channels = ["nightly"], env = { "TARGET" = "x86_64-pc-windows-msvc" } }
|
||||
|
||||
[tasks.test-verbose]
|
||||
condition = { channels = ["nightly"] }
|
||||
|
||||
[tasks.test-verbose.windows]
|
||||
condition = { channels = ["nightly"], env = { "TARGET" = "x86_64-pc-windows-msvc" } }
|
||||
|
||||
[tasks.ci-coverage-flow]
|
||||
condition = { channels = ["nightly"] }
|
||||
|
||||
[tasks.ci-coverage-flow.windows]
|
||||
disabled = true
|
|
@ -1,5 +1,3 @@
|
|||
#![feature(decl_macro, proc_macro_hygiene)]
|
||||
|
||||
use juniper::{
|
||||
tests::fixtures::starwars::{model::Database, schema::Query},
|
||||
EmptyMutation, EmptySubscription, RootNode,
|
||||
|
|
|
@ -37,7 +37,6 @@ Check the LICENSE file for details.
|
|||
*/
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/juniper_rocket_async/0.2.0")]
|
||||
#![feature(decl_macro, proc_macro_hygiene)]
|
||||
|
||||
use std::io::Cursor;
|
||||
|
||||
|
@ -152,8 +151,6 @@ impl GraphQLResponse {
|
|||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// # #![feature(decl_macro, proc_macro_hygiene)]
|
||||
/// #
|
||||
/// # extern crate juniper;
|
||||
/// # extern crate juniper_rocket_async;
|
||||
/// # extern crate rocket;
|
||||
|
|
Loading…
Reference in a new issue