async-graphql/integrations/axum/Cargo.toml

27 lines
822 B
TOML
Raw Normal View History

2021-08-01 09:44:28 +00:00
[package]
name = "async-graphql-axum"
version = "2.10.3"
2021-09-01 00:15:27 +00:00
authors = ["sunli <scott_s829@163.com>"]
2021-08-01 09:44:28 +00:00
edition = "2018"
2021-09-01 00:15:27 +00:00
description = "async-graphql for axum"
license = "MIT/Apache-2.0"
2021-09-02 03:03:38 +00:00
documentation = "https://docs.rs/async-graphql-axum/"
2021-09-01 00:15:27 +00:00
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
2021-09-02 03:03:38 +00:00
keywords = ["futures", "async", "graphql", "axum"]
2021-09-01 00:15:27 +00:00
categories = ["network-programming", "asynchronous"]
2021-08-01 09:44:28 +00:00
[dependencies]
async-graphql = { path = "../..", version = "=2.10.3" }
2021-08-01 09:44:28 +00:00
async-trait = "0.1.51"
axum = { version = "0.2.5", features = ["ws", "headers"] }
2021-08-01 09:44:28 +00:00
bytes = "1.0.1"
headers = "0.3.4"
http = "0.2.4"
http-body = "0.4.2"
serde_json = "1.0.66"
serde_urlencoded = "0.7.0"
tokio-util = { version = "0.6.7", features = ["io", "compat"] }
futures-util = "0.3.13"