juniper/juniper_rocket/Cargo.toml
Kai Ren 72ed45a77c
Rework CI and project toolchain (#1043)
- remove `cargo-make` integration
- rework CI pipeline more granular and precise
- rework releasing process
- tune up project layout
- fill up new CHANGELOGs

Additionally:
- fix latest nightly/stable Rust inconsistencies
2022-04-08 17:44:50 +03:00

26 lines
967 B
TOML

[package]
name = "juniper_rocket"
version = "0.9.0-dev"
edition = "2018"
description = "`juniper` GraphQL integration with `rocket`."
license = "BSD-2-Clause"
authors = [
"Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>",
]
documentation = "https://docs.rs/juniper_rocket"
homepage = "https://github.com/graphql-rust/juniper/tree/master/juniper_rocket"
repository = "https://github.com/graphql-rust/juniper"
readme = "README.md"
categories = ["asynchronous", "web-programming", "web-programming::http-server"]
keywords = ["apollo", "graphql", "juniper", "rocket"]
exclude = ["/examples/", "/tests/", "/release.toml"]
[dependencies]
futures = "0.3.1"
juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false }
rocket = { version = "0.5.0-rc.1", default-features = false }
serde_json = "1.0.2"
[dev-dependencies]
juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] }