From d7c84b16e9d331d22ebfafddb81a0c867b41b7e1 Mon Sep 17 00:00:00 2001 From: theduke Date: Mon, 28 Aug 2017 08:39:39 +0200 Subject: [PATCH] Update readme: use git dependency --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ccb0f6fc..34c493ee 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Add Juniper to your Cargo.toml: ```toml [dependencies] -juniper = "0.8.1" +juniper = { git = "https://github.com/graphql-rust/juniper" } ``` If you want Iron integration, you need to depend on the `juniper_iron` crate. @@ -35,7 +35,7 @@ feature flag: ```toml [dependencies] -juniper = { version = "0.8.1" } +juniper = { git = "https://github.com/graphql-rust/juniper" } juniper_iron = { git = "https://github.com/graphql-rust/juniper_iron" } ```