From 9a634bb8e29df1abcd2ed07db2cd0987efb060a6 Mon Sep 17 00:00:00 2001
From: Christian Legnitto <christian.legnitto@robinhood.com>
Date: Tue, 21 Jan 2020 08:17:49 -0800
Subject: [PATCH] Add fake features to integration crates

---
 juniper_hyper/Cargo.toml  | 4 ++++
 juniper_iron/Cargo.toml   | 4 ++++
 juniper_rocket/Cargo.toml | 4 ++++
 3 files changed, 12 insertions(+)

diff --git a/juniper_hyper/Cargo.toml b/juniper_hyper/Cargo.toml
index 27b0ce13..5255ce7d 100644
--- a/juniper_hyper/Cargo.toml
+++ b/juniper_hyper/Cargo.toml
@@ -8,6 +8,10 @@ documentation = "https://docs.rs/juniper_hyper"
 repository = "https://github.com/graphql-rust/juniper"
 edition = "2018"
 
+[features]
+# Fake feature to help CI.
+async = []
+
 [dependencies]
 serde = "1.0"
 serde_json = "1.0"
diff --git a/juniper_iron/Cargo.toml b/juniper_iron/Cargo.toml
index 3641ea95..f5bab6d5 100644
--- a/juniper_iron/Cargo.toml
+++ b/juniper_iron/Cargo.toml
@@ -11,6 +11,10 @@ documentation = "https://docs.rs/juniper_iron"
 repository = "https://github.com/graphql-rust/juniper"
 edition = "2018"
 
+[features]
+# Fake feature to help CI.
+async = []
+
 [dependencies]
 serde = { version = "1.0.2" }
 serde_json = { version = "1.0.2" }
diff --git a/juniper_rocket/Cargo.toml b/juniper_rocket/Cargo.toml
index 289217c6..32af29bc 100644
--- a/juniper_rocket/Cargo.toml
+++ b/juniper_rocket/Cargo.toml
@@ -11,6 +11,10 @@ documentation = "https://docs.rs/juniper_rocket"
 repository = "https://github.com/graphql-rust/juniper"
 edition = "2018"
 
+[features]
+# Fake feature to help CI.
+async = []
+
 [dependencies]
 serde = { version = "1.0.2" }
 serde_json = { version = "1.0.2" }