async-graphql/integrations/warp/Cargo.toml

30 lines
912 B
TOML

[package]
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
categories = ["network-programming", "asynchronous"]
description = "async-graphql for warp"
documentation = "https://docs.rs/async-graphql-warp/"
edition = "2021"
homepage = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-warp"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.15"
[dependencies]
async-graphql = { path = "../..", version = "4.0.15", default-features = false }
futures-util = { version = "0.3.0", default-features = false, features = [
"sink",
] }
serde_json = "1.0.64"
warp = { version = "0.3.0", default-features = false, features = ["websocket"] }
[dev-dependencies]
async-stream = "0.3.0"
tokio = { version = "1.4.0", default-features = false, features = [
"macros",
"rt-multi-thread",
"time",
] }