From c80cecf61e88207de52a8ca79dcb105de0638201 Mon Sep 17 00:00:00 2001 From: Christian Legnitto Date: Tue, 28 Jul 2020 16:03:31 -1000 Subject: [PATCH] Rocket can now compile on stable (#723) --- juniper_rocket_async/Makefile.toml | 17 ----------------- juniper_rocket_async/examples/rocket_server.rs | 2 -- juniper_rocket_async/src/lib.rs | 3 --- 3 files changed, 22 deletions(-) delete mode 100644 juniper_rocket_async/Makefile.toml diff --git a/juniper_rocket_async/Makefile.toml b/juniper_rocket_async/Makefile.toml deleted file mode 100644 index 8695d6a6..00000000 --- a/juniper_rocket_async/Makefile.toml +++ /dev/null @@ -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 \ No newline at end of file diff --git a/juniper_rocket_async/examples/rocket_server.rs b/juniper_rocket_async/examples/rocket_server.rs index 146df726..a3489996 100644 --- a/juniper_rocket_async/examples/rocket_server.rs +++ b/juniper_rocket_async/examples/rocket_server.rs @@ -1,5 +1,3 @@ -#![feature(decl_macro, proc_macro_hygiene)] - use juniper::{ tests::fixtures::starwars::{model::Database, schema::Query}, EmptyMutation, EmptySubscription, RootNode, diff --git a/juniper_rocket_async/src/lib.rs b/juniper_rocket_async/src/lib.rs index cada6cda..ace26ce6 100644 --- a/juniper_rocket_async/src/lib.rs +++ b/juniper_rocket_async/src/lib.rs @@ -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;