async-graphql/integrations/actix-web/Cargo.toml

29 lines
924 B
TOML
Raw Normal View History

2020-06-06 04:17:20 +00:00
[package]
name = "async-graphql-actix-web"
version = "2.11.2"
2020-09-18 12:36:05 +00:00
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
2021-10-22 20:27:03 +00:00
edition = "2021"
2020-06-06 04:17:20 +00:00
description = "async-graphql for actix-web"
license = "MIT/Apache-2.0"
2020-10-17 14:27:03 +00:00
documentation = "https://docs.rs/async-graphql-actix-web/"
2020-06-06 04:17:20 +00:00
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.11.2" }
2021-10-22 14:01:14 +00:00
actix = "0.12.0"
actix-http = "3.0.0-beta.11"
actix-web = { version = "4.0.0-beta.10", default-features = false }
actix-web-actors = "4.0.0-beta.7"
2021-03-24 04:25:03 +00:00
async-channel = "1.6.1"
2021-10-22 14:01:14 +00:00
futures-util = { version = "0.3.17", default-features = false }
2021-03-24 04:25:03 +00:00
serde_json = "1.0.64"
serde_urlencoded = "0.7.0"
2021-04-03 03:52:54 +00:00
futures-channel = "0.3.13"
[dev-dependencies]
2021-10-22 14:01:14 +00:00
actix-rt = "2.2.0"
async-mutex = "1.4.0"