juniper/juniper_actix/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

2020-04-21 01:21:02 -05:00
[package]
name = "juniper_actix"
2021-07-08 02:16:47 -05:00
version = "0.4.0"
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"
[features]
subscriptions = ["juniper_graphql_ws", "tokio"]
2020-04-21 01:21:02 -05:00
[dependencies]
2021-07-06 17:41:42 -05:00
actix = "0.12"
actix-http = "3.0.0-beta.8"
http = "0.2.4"
actix-web = "4.0.0-beta.8"
actix-web-actors = "4.0.0-beta.6"
2021-07-08 02:01:56 -05:00
juniper = { version = "0.15.7", 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 }
anyhow = "1.0"
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1.0", features = ["sync"], optional = true }
2020-04-21 01:21:02 -05:00
[dev-dependencies]
actix-rt = "2"
actix-cors = "0.6.0-beta.2"
actix-identity = "0.4.0-beta.2"
tokio = "1.0"
async-stream = "0.3"
2021-07-06 17:41:42 -05:00
actix-test = "0.1.0-beta.3"
2021-07-08 02:01:56 -05:00
juniper = { version = "0.15.7", path = "../juniper", features = ["expose-test-schema"] }
bytes = "1.0"
env_logger = "0.9"
log = "0.4"