forked from graphql-rust/juniper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 998 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "juniper_warp"
version = "0.6.3"
edition = "2018"
authors = ["Tom Houlé <[email protected]>"]
description = "Juniper GraphQL integration with Warp"
license = "BSD-2-Clause"
documentation = "https://docs.rs/juniper_warp"
repository = "https://github.com/graphql-rust/juniper"
[features]
subscriptions = ["juniper_graphql_ws"]
[dependencies]
anyhow = "1.0"
bytes = "0.5"
futures = "0.3.1"
juniper = { version = "0.15.4", path = "../juniper", default-features = false }
juniper_graphql_ws = { version = "0.2.4", path = "../juniper_graphql_ws", optional = true }
serde = { version = "1.0.75", features = ["derive"] }
serde_json = "1.0.24"
thiserror = "1.0"
tokio = { version = "0.2", features = ["blocking", "rt-core"] }
warp = "0.2"
[dev-dependencies]
env_logger = "0.8"
juniper = { version = "0.15.4", path = "../juniper", features = ["expose-test-schema"] }
log = "0.4"
percent-encoding = "2.1"
tokio = { version = "0.2", features = ["blocking", "macros", "rt-core"] }
url = "2"