Support 0.14 version of actix crate (#1189)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kai Ren <tyranron@gmail.com>
This commit is contained in:
dependabot[bot] 2023-10-16 11:48:16 +00:00 committed by GitHub
parent 57628de864
commit f3a1a0c65d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -19,6 +19,7 @@ All user visible changes to `juniper_actix` crate will be documented in this fil
- `subscriptions::graphql_transport_ws_handler()` allowing to process the [new `graphql-transport-ws` GraphQL over WebSocket Protocol][graphql-transport-ws]. ([#1191])
- `subscriptions::ws_handler()` with auto-selection between the [legacy `graphql-ws` GraphQL over WebSocket Protocol][graphql-ws] and the [new `graphql-transport-ws` GraphQL over WebSocket Protocol][graphql-transport-ws], based on the `Sec-Websocket-Protocol` HTTP header value. ([#1191])
- Support of 0.14 version of [`actix` crate]. ([#1189])
### Fixed
@ -27,6 +28,7 @@ All user visible changes to `juniper_actix` crate will be documented in this fil
[#1034]: /../../pull/1034
[#1169]: /../../issues/1169
[#1187]: /../../pull/1187
[#1189]: /../../pull/1189
[#1191]: /../../pull/1191
@ -39,6 +41,7 @@ See [old CHANGELOG](/../../blob/juniper_actix-v0.4.0/juniper_actix/CHANGELOG.md)
[`actix` crate]: https://docs.rs/actix
[`actix-web` crate]: https://docs.rs/actix-web
[`juniper` crate]: https://docs.rs/juniper
[`juniper_graphql_ws` crate]: https://docs.rs/juniper_graphql_ws

View file

@ -28,7 +28,7 @@ subscriptions = [
]
[dependencies]
actix = { version = ">=0.12,<=0.13", optional = true }
actix = { version = ">=0.12, <=0.14", optional = true }
actix-http = "3.2"
actix-web = "4.4"
actix-web-actors = { version = "4.1", optional = true }