739cc3bfc2
* Upgraded tokio, warp, hyper and actix * Code formatting * actix-web temporary version fix specification * Error handling fix on juniper_rocket Co-authored-by: Christian Legnitto <LegNeato@users.noreply.github.com>
26 lines
613 B
TOML
26 lines
613 B
TOML
[package]
|
|
name = "juniper_book_tests"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
authors = ["Magnus Hallin <mhallin@fastmail.com>"]
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
juniper = { path = "../../../juniper" }
|
|
juniper_iron = { path = "../../../juniper_iron" }
|
|
juniper_subscriptions = { path = "../../../juniper_subscriptions" }
|
|
|
|
derive_more = "0.99"
|
|
futures = "0.3"
|
|
iron = "0.5"
|
|
mount = "0.4"
|
|
skeptic = "0.13"
|
|
serde_json = "1.0"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
uuid = "0.8"
|
|
|
|
[build-dependencies]
|
|
skeptic = "0.13"
|
|
|
|
[patch.crates-io]
|
|
juniper_codegen = { path = "../../../juniper_codegen" }
|