async-graphql/integrations/poem/Cargo.toml

22 lines
732 B
TOML
Raw Normal View History

2021-08-23 15:16:31 +00:00
[package]
name = "async-graphql-poem"
version = "3.0.23"
2021-08-23 15:16:31 +00:00
authors = ["sunli <scott_s829@163.com>"]
2021-10-22 20:27:03 +00:00
edition = "2021"
2021-08-23 15:16:31 +00:00
description = "async-graphql for poem"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql-poem/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql", "poem"]
categories = ["network-programming", "asynchronous"]
[dependencies]
async-graphql = { path = "../..", version = "3.0.23" }
2021-08-23 15:16:31 +00:00
2021-12-17 01:47:21 +00:00
poem = { version = "1.2.2", features = ["websocket"] }
2021-12-16 04:56:11 +00:00
futures-util = { version = "0.3.0", default-features = false }
2021-08-23 15:16:31 +00:00
serde_json = "1.0.66"
tokio-util = { version = "0.6.7", features = ["compat"] }
2021-11-12 04:58:32 +00:00