async-graphql/integrations/rocket/Cargo.toml

23 lines
889 B
TOML
Raw Normal View History

2020-08-31 14:26:12 +00:00
[package]
name = "async-graphql-rocket"
version = "2.0.8"
2020-08-31 14:26:12 +00:00
authors = ["Daniel Wiesenberg <daniel@simplificAR.io>"]
edition = "2018"
description = "async-graphql for Rocket.rs"
2020-09-11 14:37:48 +00:00
# Waiting for Rocket 0.5 release.
publish = false
2020-08-31 14:26:12 +00:00
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/"
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql", "rocket"]
categories = ["network-programming", "asynchronous"]
[dependencies]
async-graphql = { path = "../..", version = "=2.6.4" }
rocket = { git = "https://github.com/SergioBenitez/Rocket", rev = "48fd83a", default-features = false } # TODO: Change to Cargo crate when Rocket 0.5.0 is released
serde = "1.0.117"
serde_json = "1.0.59"
2021-01-14 04:01:26 +00:00
tokio-util = { version = "0.6.1", default-features = false, features = ["compat"] }