From c866e091a40c69ee0af1ff8a798723852e5d70ad Mon Sep 17 00:00:00 2001 From: Drew Date: Mon, 3 Jan 2022 04:47:53 -0600 Subject: [PATCH] Update versions referenced in server integration docs (#1013) --- docs/book/content/servers/hyper.md | 4 ++-- docs/book/content/servers/iron.md | 4 ++-- docs/book/content/servers/rocket.md | 4 ++-- docs/book/content/servers/warp.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/book/content/servers/hyper.md b/docs/book/content/servers/hyper.md index c3e5686a..a9c0c7b8 100644 --- a/docs/book/content/servers/hyper.md +++ b/docs/book/content/servers/hyper.md @@ -16,8 +16,8 @@ Juniper's Hyper integration is contained in the [`juniper_hyper`][juniper_hyper] ```toml [dependencies] -juniper = "0.10" -juniper_hyper = "0.1.0" +juniper = "0.15.7" +juniper_hyper = "0.8.0" ``` Included in the source is a [small example][example] which sets up a basic GraphQL and [GraphiQL] handler. diff --git a/docs/book/content/servers/iron.md b/docs/book/content/servers/iron.md index 1c50a29d..7fd92e83 100644 --- a/docs/book/content/servers/iron.md +++ b/docs/book/content/servers/iron.md @@ -11,8 +11,8 @@ Juniper's Iron integration is contained in the `juniper_iron` crate: ```toml [dependencies] -juniper = "0.10" -juniper_iron = "0.2.0" +juniper = "0.15.7" +juniper_iron = "0.7.4" ``` Included in the source is a [small diff --git a/docs/book/content/servers/rocket.md b/docs/book/content/servers/rocket.md index 69a152e4..320e3d90 100644 --- a/docs/book/content/servers/rocket.md +++ b/docs/book/content/servers/rocket.md @@ -10,8 +10,8 @@ Juniper's Rocket integration is contained in the [`juniper_rocket`][juniper_rock ```toml [dependencies] -juniper = "0.10" -juniper_rocket = "0.2.0" +juniper = "0.15.7" +juniper_rocket = "0.8.0" ``` Included in the source is a [small example][example] which sets up a basic GraphQL and [GraphiQL] handler. diff --git a/docs/book/content/servers/warp.md b/docs/book/content/servers/warp.md index d1170c74..ef5a3024 100644 --- a/docs/book/content/servers/warp.md +++ b/docs/book/content/servers/warp.md @@ -10,8 +10,8 @@ Juniper's Warp integration is contained in the [`juniper_warp`][juniper_warp] cr ```toml [dependencies] -juniper = "0.10" -juniper_warp = "0.1.0" +juniper = "0.15.7" +juniper_warp = "0.7.0" ``` Included in the source is a [small example][example] which sets up a basic GraphQL and [GraphiQL] handler.