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

36 lines
1.0 KiB
TOML
Raw Normal View History

2020-06-06 04:17:20 +00:00
[package]
2020-09-18 12:36:05 +00:00
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
categories = ["network-programming", "asynchronous"]
2020-06-06 04:17:20 +00:00
description = "async-graphql for actix-web"
2020-10-17 14:27:03 +00:00
documentation = "https://docs.rs/async-graphql-actix-web/"
edition = "2021"
2020-06-06 04:17:20 +00:00
homepage = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-actix-web"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.15"
2020-06-06 04:17:20 +00:00
[dependencies]
async-graphql = { path = "../..", version = "4.0.15", default-features = false }
2022-03-04 10:29:58 +00:00
actix = "0.13.0"
2022-06-24 08:12:30 +00:00
actix-http = "3.1.0"
actix-web = { version = "4.1.0", default-features = false }
2022-03-04 18:50:39 +00:00
actix-web-actors = "4.1.0"
2021-03-24 04:25:03 +00:00
async-channel = "1.6.1"
futures-channel = "0.3.13"
2021-12-16 04:56:11 +00:00
futures-util = { version = "0.3.0", default-features = false }
serde_cbor = { version = "0.11.2", optional = true }
2021-03-24 04:25:03 +00:00
serde_json = "1.0.64"
2021-11-12 13:24:24 +00:00
thiserror = "1.0.30"
[features]
cbor = ["serde_cbor"]
default = []
[dev-dependencies]
actix-rt = "2.6.0"
async-mutex = "1.4.0"
serde = { version = "1", features = ["derive"] }