async-graphql/integrations/tide/Cargo.toml

24 lines
832 B
TOML
Raw Normal View History

[package]
name = "async-graphql-tide"
version = "2.1.9"
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.1.9" }
2020-10-15 10:51:21 +00:00
2020-11-27 10:11:55 +00:00
tide = { version = "0.15.0", default-features = false, features = ["h1-server"] }
[dev-dependencies]
2020-10-15 10:51:21 +00:00
# Surf lacks multipart support
reqwest = { version = "0.10.8", default-features = false, features = ["json"] }
2020-10-16 00:52:17 +00:00
async-std = { version = "1.6.5", features = ["attributes", "tokio02"] }
2020-10-15 10:51:21 +00:00
serde_json = "1.0.59"