ef7a7e8229
- set 1.62 Rust as MSRV - use new fmt syntax where possible - refactor `.to_owned()`, `.to_string()` and `.into()` usage - rename `IntoResolvable::into()` as `IntoResolvable::into_resolvable()` to disambiguate with `Into::into()` - use `#[derive(Default)]` for enums where possible - use `bool::then_some()` where possible
34 lines
1 KiB
TOML
34 lines
1 KiB
TOML
[package]
|
|
name = "juniper_iron"
|
|
version = "0.8.0-dev"
|
|
edition = "2021"
|
|
rust-version = "1.62"
|
|
description = "`juniper` GraphQL integration with `iron`."
|
|
license = "BSD-2-Clause"
|
|
authors = [
|
|
"Magnus Hallin <mhallin@fastmail.com>",
|
|
"Christoph Herzog <chris@theduke.at>",
|
|
]
|
|
documentation = "https://docs.rs/juniper_iron"
|
|
homepage = "https://github.com/graphql-rust/juniper/tree/master/juniper_iron"
|
|
repository = "https://github.com/graphql-rust/juniper"
|
|
readme = "README.md"
|
|
categories = ["web-programming", "web-programming::http-server"]
|
|
keywords = ["apollo", "graphql", "iron", "juniper"]
|
|
exclude = ["/examples/", "/release.toml"]
|
|
|
|
[dependencies]
|
|
futures = "0.3.1"
|
|
iron = ">= 0.5, < 0.7"
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false }
|
|
serde_json = "1.0.2"
|
|
urlencoded = ">= 0.5, < 0.7"
|
|
|
|
[dev-dependencies]
|
|
iron-test = "0.6"
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] }
|
|
logger = "0.4"
|
|
mount = "0.4"
|
|
percent-encoding = "2.0"
|
|
router = "0.6"
|
|
url = "2.0"
|