async-graphql/integrations/warp/Cargo.toml

30 lines
912 B
TOML
Raw Normal View History

[package]
2020-09-18 12:36:05 +00:00
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
categories = ["network-programming", "asynchronous"]
description = "async-graphql for warp"
2020-10-17 14:27:03 +00:00
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",
] }
2021-03-24 04:25:03 +00:00
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",
] }