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

24 lines
715 B
TOML
Raw Normal View History

2020-06-06 04:17:20 +00:00
[package]
name = "async-graphql-actix-web"
2020-09-18 07:17:43 +00:00
version = "2.0.0-alpha.13"
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"
publish = true
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/"
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]
2020-09-18 07:17:43 +00:00
async-graphql = { path = "../..", version = "2.0.0-alpha.13" }
2020-09-12 12:04:50 +00:00
actix-web = "3.0.0"
actix-web-actors = "3.0.0"
2020-09-17 18:22:54 +00:00
actix-http = "2.0.0"
2020-09-12 12:04:50 +00:00
actix = "0.10.0"
actix-rt = "1.1.0"
2020-09-17 18:22:54 +00:00
futures = "0.3.5"
2020-04-23 07:30:12 +00:00
serde_json = "1.0.48"