async-graphql/integrations/rocket/Cargo.toml

23 lines
751 B
TOML
Raw Normal View History

2020-08-31 14:26:12 +00:00
[package]
authors = ["Daniel Wiesenberg <daniel@simplificAR.io>"]
categories = ["network-programming", "asynchronous"]
2020-08-31 14:26:12 +00:00
description = "async-graphql for Rocket.rs"
documentation = "https://docs.rs/async-graphql/"
edition = "2021"
2020-08-31 14:26:12 +00:00
homepage = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql", "rocket"]
license = "MIT/Apache-2.0"
name = "async-graphql-rocket"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.0-alpha.2"
2020-08-31 14:26:12 +00:00
[dependencies]
async-graphql = {path = "../..", version = "4.0.0-alpha.2"}
rocket = {version = "0.5.0-rc.1", default-features = false}
serde = "1.0.126"
2021-03-24 04:25:03 +00:00
serde_json = "1.0.64"
tokio-util = {version = "0.6.7", default-features = false, features = [
"compat",
]}