diff --git a/examples/actix_subscriptions/Cargo.toml b/examples/actix_subscriptions/Cargo.toml index b91b5b9c..531fe0bd 100644 --- a/examples/actix_subscriptions/Cargo.toml +++ b/examples/actix_subscriptions/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Mihai Dinculescu "] publish = false [dependencies] -actix-web = "3.0" +actix-web = "3.3" actix-cors = "0.5" futures = "0.3" tokio = { version = "0.2", features = ["macros", "rt-core"] } diff --git a/juniper_actix/Cargo.toml b/juniper_actix/Cargo.toml index 76d3ef6b..92f6dff0 100644 --- a/juniper_actix/Cargo.toml +++ b/juniper_actix/Cargo.toml @@ -13,10 +13,10 @@ subscriptions = ["juniper_graphql_ws"] [dependencies] actix = "0.10" -actix-web = { version = "3.0", features = ["rustls"] } +actix-web = "3.3" actix-web-actors = "3.0" -juniper = { version = "0.15.0", path = "../juniper", default-features = false } +juniper = { version = "0.15.0", path = "../juniper", default-features = false } juniper_graphql_ws = { version = "0.2.0", path = "../juniper_graphql_ws", optional = true } anyhow = "1.0" @@ -33,6 +33,6 @@ actix-identity = "0.3" juniper = { version = "0.15.0", path = "../juniper", features = ["expose-test-schema"] } -bytes = "0.5" +bytes = "0.6" env_logger = "0.8" log = "0.4"