async-graphql/integrations/actix-web/Cargo.toml
Sunli 70ff722364 Release 3.0.28
async-graphql@3.0.28
async-graphql-actix-web@3.0.28
async-graphql-axum@3.0.28
async-graphql-derive@3.0.28
async-graphql-parser@3.0.28
async-graphql-poem@3.0.28
async-graphql-rocket@3.0.28
async-graphql-tide@3.0.28
async-graphql-value@3.0.28
async-graphql-warp@3.0.28

Generated by cargo-workspaces
2022-01-31 20:03:57 +08:00

37 lines
1.1 KiB
TOML

[package]
name = "async-graphql-actix-web"
version = "3.0.28"
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
edition = "2021"
description = "async-graphql for actix-web"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql-actix-web/"
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 = "3.0.28" }
actix = "0.12.0"
actix-http = "3.0.0-beta.17"
actix-web = { version = "4.0.0-beta.19", default-features = false }
actix-web-actors = "4.0.0-beta.9"
async-channel = "1.6.1"
futures-util = { version = "0.3.0", default-features = false }
serde_json = "1.0.64"
serde_urlencoded = "0.7.0"
futures-channel = "0.3.13"
thiserror = "1.0.30"
serde_cbor = { version = "0.11.2", optional = true }
[features]
default = []
cbor = ["serde_cbor"]
[dev-dependencies]
actix-rt = "2.2.0"
async-mutex = "1.4.0"
serde = { version = "1", features = ["derive"] }