juniper/juniper_actix/Cargo.toml

39 lines
1,000 B
TOML
Raw Normal View History

2020-04-21 01:21:02 -05:00
[package]
name = "juniper_actix"
2021-04-03 20:43:50 -05:00
version = "0.2.4"
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"]
2020-04-21 01:21:02 -05:00
[dependencies]
actix = "0.10"
2020-12-11 01:40:49 -06:00
actix-web = "3.3"
actix-web-actors = "3.0"
2021-05-11 09:38:32 -05:00
juniper = { version = "0.15.5", path = "../juniper", default-features = false }
2021-04-03 20:41:32 -05:00
juniper_graphql_ws = { version = "0.2.4", path = "../juniper_graphql_ws", optional = true }
anyhow = "1.0"
futures = "0.3.5"
serde = { version = "1.0.116", features = ["derive"] }
serde_json = "1.0.57"
thiserror = "1.0"
tokio = { version = "0.2", features = ["time"] }
2020-04-21 01:21:02 -05:00
[dev-dependencies]
actix-rt = "1.1"
actix-cors = "0.5"
actix-identity = "0.3"
2021-05-11 09:38:32 -05:00
juniper = { version = "0.15.5", path = "../juniper", features = ["expose-test-schema"] }
2020-12-11 01:40:49 -06:00
bytes = "0.6"
env_logger = "0.8"
log = "0.4"