2020-04-21 01:21:02 -05:00
|
|
|
[package]
|
|
|
|
name = "juniper_actix"
|
2022-04-08 09:44:50 -05:00
|
|
|
version = "0.5.0-dev"
|
2022-07-13 05:30:51 -05:00
|
|
|
edition = "2021"
|
2023-11-09 04:57:00 -06:00
|
|
|
rust-version = "1.73"
|
2022-04-08 09:44:50 -05:00
|
|
|
description = "`juniper` GraphQL integration with `actix-web`."
|
2020-04-21 01:21:02 -05:00
|
|
|
license = "BSD-2-Clause"
|
2022-04-08 09:44:50 -05:00
|
|
|
authors = ["Jordao Rosario <jordao.rosario01@gmail.com>"]
|
2020-04-21 01:21:02 -05:00
|
|
|
documentation = "https://docs.rs/juniper_actix"
|
2022-04-08 09:44:50 -05:00
|
|
|
homepage = "https://github.com/graphql-rust/juniper/tree/master/juniper_actix"
|
2020-04-21 01:21:02 -05:00
|
|
|
repository = "https://github.com/graphql-rust/juniper"
|
2022-04-08 09:44:50 -05:00
|
|
|
readme = "README.md"
|
|
|
|
categories = ["asynchronous", "web-programming", "web-programming::http-server"]
|
|
|
|
keywords = ["actix-web", "apollo", "graphql", "juniper", "websocket"]
|
2023-11-09 04:57:00 -06:00
|
|
|
exclude = ["/release.toml"]
|
2022-04-08 09:44:50 -05:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2020-04-21 01:21:02 -05:00
|
|
|
|
2020-08-09 17:19:34 -05:00
|
|
|
[features]
|
2023-10-24 12:59:36 -05:00
|
|
|
subscriptions = ["dep:actix-ws", "dep:juniper_graphql_ws"]
|
2020-04-21 01:21:02 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2022-10-21 11:07:17 -05:00
|
|
|
actix-http = "3.2"
|
2023-09-21 16:24:41 -05:00
|
|
|
actix-web = "4.4"
|
2023-10-24 12:59:36 -05:00
|
|
|
actix-ws = { version = "0.2", optional = true }
|
2022-10-21 11:07:17 -05:00
|
|
|
anyhow = "1.0.47"
|
2022-08-29 09:10:40 -05:00
|
|
|
futures = "0.3.22"
|
2022-04-08 09:44:50 -05:00
|
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false }
|
2023-10-17 09:12:20 -05:00
|
|
|
juniper_graphql_ws = { version = "0.4.0-dev", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
|
2022-10-21 11:07:17 -05:00
|
|
|
serde = { version = "1.0.122", features = ["derive"] }
|
|
|
|
serde_json = "1.0.18"
|
2020-08-09 17:19:34 -05:00
|
|
|
|
2020-04-21 01:21:02 -05:00
|
|
|
[dev-dependencies]
|
2022-03-04 09:53:27 -06:00
|
|
|
actix-cors = "0.6"
|
2023-09-20 08:32:24 -05:00
|
|
|
actix-identity = "0.6"
|
2022-04-08 09:44:50 -05:00
|
|
|
actix-rt = "2.0"
|
2022-07-26 05:22:39 -05:00
|
|
|
actix-test = "0.1"
|
2022-04-08 09:44:50 -05:00
|
|
|
async-stream = "0.3"
|
2021-06-29 01:22:45 -05:00
|
|
|
bytes = "1.0"
|
2022-11-28 04:13:09 -06:00
|
|
|
env_logger = "0.10"
|
2022-04-08 09:44:50 -05:00
|
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] }
|
2020-10-19 11:42:27 -05:00
|
|
|
log = "0.4"
|
2023-09-21 16:24:41 -05:00
|
|
|
rand = "0.8"
|
2022-04-08 09:44:50 -05:00
|
|
|
tokio = "1.0"
|
2023-09-21 16:24:41 -05:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "subscription"
|
|
|
|
required-features = ["subscriptions"]
|