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