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

29 lines
875 B
TOML
Raw Normal View History

2020-06-06 04:17:20 +00:00
[package]
name = "async-graphql-actix-web"
version = "2.10.3"
2020-09-18 12:36:05 +00:00
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
2020-06-06 04:17:20 +00:00
edition = "2018"
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.10.3" }
actix = "0.10.0"
2021-03-24 04:25:03 +00:00
actix-http = "2.2.0"
actix-web = { version = "3.3.2", default-features = false }
2020-09-12 12:04:50 +00:00
actix-web-actors = "3.0.0"
2021-03-24 04:25:03 +00:00
async-channel = "1.6.1"
futures-util = { version = "0.3.13", default-features = false }
serde_json = "1.0.64"
serde_urlencoded = "0.7.0"
[dev-dependencies]
2021-03-24 04:25:03 +00:00
actix-rt = "1.1.0"
async-mutex = "1.4.0"