2020-04-21 03:21:02 -03:00
|
|
|
[package]
|
|
|
|
name = "juniper_actix"
|
2021-07-08 00:16:47 -07:00
|
|
|
version = "0.4.0"
|
2020-10-19 19:42:27 +03:00
|
|
|
edition = "2018"
|
2020-04-21 03:21:02 -03:00
|
|
|
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"
|
|
|
|
|
2020-08-09 23:19:34 +01:00
|
|
|
[features]
|
2021-10-11 19:24:30 +03:00
|
|
|
subscriptions = ["juniper_graphql_ws", "tokio"]
|
2020-04-21 03:21:02 -03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-07-06 19:41:42 -03:00
|
|
|
actix = "0.12"
|
2021-12-13 12:22:07 +01:00
|
|
|
actix-http = "3.0.0-beta.15"
|
2021-07-06 19:41:42 -03:00
|
|
|
http = "0.2.4"
|
2021-12-13 12:22:07 +01:00
|
|
|
actix-web = "4.0.0-beta.14"
|
|
|
|
actix-web-actors = "4.0.0-beta.8"
|
2020-09-12 22:02:15 +05:30
|
|
|
|
2021-07-08 00:01:56 -07:00
|
|
|
juniper = { version = "0.15.7", path = "../juniper", default-features = false }
|
2021-07-08 00:10:57 -07:00
|
|
|
juniper_graphql_ws = { version = "0.3.0", path = "../juniper_graphql_ws", optional = true }
|
2020-08-09 23:19:34 +01:00
|
|
|
|
2020-10-19 19:42:27 +03:00
|
|
|
anyhow = "1.0"
|
2021-06-29 03:22:45 -03:00
|
|
|
futures = "0.3"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2020-07-11 13:32:32 +05:30
|
|
|
thiserror = "1.0"
|
2021-10-11 19:24:30 +03:00
|
|
|
tokio = { version = "1.0", features = ["sync"], optional = true }
|
2020-08-09 23:19:34 +01:00
|
|
|
|
2020-04-21 03:21:02 -03:00
|
|
|
[dev-dependencies]
|
2021-06-29 03:22:45 -03:00
|
|
|
actix-rt = "2"
|
2021-12-13 12:22:07 +01:00
|
|
|
actix-cors = "0.6.0-beta.6"
|
|
|
|
actix-identity = "0.4.0-beta.5"
|
2021-10-11 19:24:30 +03:00
|
|
|
tokio = "1.0"
|
2021-06-29 03:22:45 -03:00
|
|
|
async-stream = "0.3"
|
2021-12-13 12:22:07 +01:00
|
|
|
actix-test = "0.1.0-beta.8"
|
2020-08-09 23:19:34 +01:00
|
|
|
|
2021-07-08 00:01:56 -07:00
|
|
|
juniper = { version = "0.15.7", path = "../juniper", features = ["expose-test-schema"] }
|
2020-10-19 19:42:27 +03:00
|
|
|
|
2021-06-29 03:22:45 -03:00
|
|
|
bytes = "1.0"
|
2021-07-16 12:01:18 +03:00
|
|
|
env_logger = "0.9"
|
2020-10-19 19:42:27 +03:00
|
|
|
log = "0.4"
|