async-graphql/integrations/tide/Cargo.toml

28 lines
939 B
TOML
Raw Normal View History

[package]
name = "async-graphql-tide"
version = "2.7.3"
authors = ["vkill <vkill.net@gmail.com>"]
edition = "2018"
description = "async-graphql for tide"
license = "MIT/Apache-2.0"
2020-10-17 14:27:03 +00:00
documentation = "https://docs.rs/async-graphql-tide/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
categories = ["network-programming", "asynchronous"]
[dependencies]
async-graphql = { path = "../..", version = "=2.7.3" }
2021-03-24 04:25:03 +00:00
async-trait = "0.1.48"
futures-util = "0.3.13"
serde_json = "1.0.64"
2020-10-15 10:51:21 +00:00
2021-01-30 02:34:41 +00:00
tide = { version = "0.16.0", default-features = false, features = ["h1-server"] }
2021-03-24 04:25:03 +00:00
tide-websockets = "0.3.0"
[dev-dependencies]
2020-10-15 10:51:21 +00:00
# Surf lacks multipart support
2021-03-24 04:25:03 +00:00
reqwest = { version = "0.11.2", default-features = false, features = ["json", "multipart"] }
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
serde_json = "1.0.64"