async-graphql/integrations/axum/Cargo.toml

25 lines
825 B
TOML
Raw Normal View History

2021-08-01 09:44:28 +00:00
[package]
2021-09-01 00:15:27 +00:00
authors = ["sunli <scott_s829@163.com>"]
categories = ["network-programming", "asynchronous"]
2021-09-01 00:15:27 +00:00
description = "async-graphql for axum"
2021-09-02 03:03:38 +00:00
documentation = "https://docs.rs/async-graphql-axum/"
edition = "2021"
2021-09-01 00:15:27 +00:00
homepage = "https://github.com/async-graphql/async-graphql"
2021-09-02 03:03:38 +00:00
keywords = ["futures", "async", "graphql", "axum"]
license = "MIT/Apache-2.0"
name = "async-graphql-axum"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.15"
2021-08-01 09:44:28 +00:00
[dependencies]
async-graphql = { path = "../..", version = "4.0.15", default-features = false }
2021-08-01 09:44:28 +00:00
async-trait = "0.1.51"
2022-10-12 14:42:07 +00:00
axum = { git = "https://github.com/tokio-rs/axum", features = ["headers"] }
2021-08-01 09:44:28 +00:00
bytes = "1.0.1"
futures-util = "0.3.0"
2021-08-01 09:44:28 +00:00
http-body = "0.4.2"
serde_json = "1.0.66"
2022-04-18 16:53:55 +00:00
tokio-util = { version = "0.7.1", features = ["io", "compat"] }
2021-11-12 04:58:32 +00:00
tower-service = "0.3"