async-graphql/integrations/tide/Cargo.toml

25 lines
849 B
TOML

[package]
name = "async-graphql-tide"
version = "2.0.3"
authors = ["vkill <vkill.net@gmail.com>"]
edition = "2018"
description = "async-graphql for tide"
publish = true
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/"
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.0.3" }
tide = { version = "0.13.0", default-features = false, features = ["h1-server"] }
[dev-dependencies]
# Surf lacks multipart support
reqwest = { version = "0.10.8", default-features = false, features = ["json"] }
tokio = { version = "0.3.0", default-features = false, features = ["macros"] }
serde_json = "1.0.59"