-
Notifications
You must be signed in to change notification settings - Fork 442
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (24 loc) · 931 Bytes
/
Cargo.toml
File metadata and controls
30 lines (24 loc) · 931 Bytes
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
[package]
name = "juniper_book_tests"
version = "0.1.0"
authors = ["Magnus Hallin <mhallin@fastmail.com>"]
edition = "2018"
build = "build.rs"
[dependencies]
juniper = { path = "../../../juniper", features = ["default", "tracing"] }
juniper_iron = { path = "../../../juniper_iron" }
juniper_subscriptions = { path = "../../../juniper_subscriptions" }
derive_more = "0.99.7"
futures = "0.3"
tokio = { version = "0.2", features = ["rt-core", "blocking", "stream", "rt-util", "macros"] }
iron = "0.5.0"
mount = "0.4.0"
skeptic = "0.13"
serde_json = "1.0.39"
uuid = "0.8"
tracing = { git = "https://github.com/tokio-rs/tracing.git", branch = "davidbarsky/add-instrument-trait-to-tracing"}
tracing-subscriber = { git = "https://github.com/tokio-rs/tracing.git", branch = "davidbarsky/add-instrument-trait-to-tracing"}
[build-dependencies]
skeptic = "0.13"
[patch.crates-io]
juniper_codegen = { path = "../../../juniper_codegen" }