From 1146a0133175715729fc71368e8f45bf9473f0d2 Mon Sep 17 00:00:00 2001 From: Christian Legnitto Date: Tue, 6 Jul 2021 13:23:41 -1000 Subject: [PATCH] Use actix betas to allow publishing on crates.io (#954) --- docs/book/content/advanced/dataloaders.md | 2 +- examples/actix_subscriptions/Cargo.toml | 2 +- juniper_actix/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/book/content/advanced/dataloaders.md b/docs/book/content/advanced/dataloaders.md index 6581388f..8dd2f858 100644 --- a/docs/book/content/advanced/dataloaders.md +++ b/docs/book/content/advanced/dataloaders.md @@ -48,7 +48,7 @@ DataLoader caching does not replace Redis, Memcache, or any other shared applica ```toml [dependencies] -actix-identity = "0.2" +actix-identity = "0.4.0-beta.2" actix-rt = "1.0" actix-web = {version = "2.0", features = []} juniper = { git = "https://github.com/graphql-rust/juniper" } diff --git a/examples/actix_subscriptions/Cargo.toml b/examples/actix_subscriptions/Cargo.toml index 5c00aac1..dcb3398a 100644 --- a/examples/actix_subscriptions/Cargo.toml +++ b/examples/actix_subscriptions/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] actix-web = "4.0.0-beta.8" -actix-cors = {git = "https://github.com/actix/actix-extras"} +actix-cors = "0.6.0-beta.2" futures = "0.3" env_logger = "0.8" serde = "1.0" diff --git a/juniper_actix/Cargo.toml b/juniper_actix/Cargo.toml index ac04e0ee..fed0b672 100644 --- a/juniper_actix/Cargo.toml +++ b/juniper_actix/Cargo.toml @@ -29,8 +29,8 @@ thiserror = "1.0" [dev-dependencies] actix-rt = "2" -actix-cors = {git = "https://github.com/actix/actix-extras"} -actix-identity = {git = "https://github.com/actix/actix-extras"} +actix-cors = "0.6.0-beta.2" +actix-identity = "0.4.0-beta.2" tokio = "1" async-stream = "0.3" actix-test = "0.1.0-beta.3"