juniper/juniper_actix/Cargo.toml
dependabot-preview[bot] 746aff34a5
Update actix-cors requirement from 0.3.0 to 0.4.1 (#778)
Updates the requirements on [actix-cors](https://github.com/actix/actix-extras) to permit the latest version.
- [Release notes](https://github.com/actix/actix-extras/releases)
- [Commits](https://github.com/actix/actix-extras/compare/cors-v0.3.0...cors-v0.4.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-10-08 02:57:47 -10:00

39 lines
1.1 KiB
TOML

[package]
name = "juniper_actix"
version = "0.1.0"
authors = ["Jordao Rosario <jordao.rosario01@gmail.com>"]
description = "Juniper GraphQL integration with Actix"
license = "BSD-2-Clause"
documentation = "https://docs.rs/juniper_actix"
repository = "https://github.com/graphql-rust/juniper"
edition = "2018"
[features]
subscriptions = ["juniper_graphql_ws"]
[dependencies]
actix = "0.10.0"
actix-web = { version = "3.0.0", features = ["rustls"] }
actix-web-actors = "3.0.0"
futures = { version = "0.3.5", features = ["compat"] }
tokio = { version = "0.2", features = ["time"] }
serde = { version = "1.0.116", features = ["derive"] }
serde_json = "1.0.57"
anyhow = "1.0"
thiserror = "1.0"
juniper = { version = "0.14.2", path = "../juniper", default-features = false }
juniper_graphql_ws = { path = "../juniper_graphql_ws", optional = true }
[dev-dependencies]
actix-rt = "1.1.1"
actix-cors = "0.4.1"
actix-identity = "0.3.0"
bytes = "0.5.6"
env_logger = "0.7.1"
log = "0.4.11"
juniper = { version = "0.14.2", path = "../juniper", features = ["expose-test-schema"] }