From db68dd76977454137cd329d2efae114d2e9c42eb Mon Sep 17 00:00:00 2001 From: samuela Date: Thu, 20 Feb 2020 21:28:27 -0800 Subject: [PATCH] Extern crates are no longer necessary (#536) --- juniper_hyper/examples/hyper_server.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/juniper_hyper/examples/hyper_server.rs b/juniper_hyper/examples/hyper_server.rs index 8df3e6af..134cbc48 100644 --- a/juniper_hyper/examples/hyper_server.rs +++ b/juniper_hyper/examples/hyper_server.rs @@ -1,8 +1,3 @@ -extern crate hyper; -extern crate juniper; -extern crate juniper_hyper; -extern crate pretty_env_logger; - use hyper::{ service::{make_service_fn, service_fn}, Body, Method, Response, Server, StatusCode,