Skip to content

Commit d7103e2

Browse files
authored
Remove iron integration (#1210)
1 parent e75cf26 commit d7103e2

20 files changed

+6
-754
lines changed

.github/workflows/ci.yml

-3
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ jobs:
152152
- juniper_actix
153153
- juniper_axum
154154
- juniper_hyper
155-
#- juniper_iron
156155
- juniper_rocket
157156
- juniper_warp
158157
os:
@@ -205,7 +204,6 @@ jobs:
205204
- juniper_actix
206205
- juniper_axum
207206
- juniper_hyper
208-
- juniper_iron
209207
- juniper_rocket
210208
- juniper_warp
211209
os:
@@ -332,7 +330,6 @@ jobs:
332330
- juniper_actix
333331
- juniper_axum
334332
- juniper_hyper
335-
- juniper_iron
336333
- juniper_rocket
337334
- juniper_warp
338335
runs-on: ubuntu-latest

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ members = [
55
"juniper_codegen",
66
"juniper",
77
"juniper_hyper",
8-
"juniper_iron",
98
"juniper_rocket",
109
"juniper_subscriptions",
1110
"juniper_graphql_ws",

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ GraphQL schemas as convenient as Rust will allow.
1818

1919
Juniper does not include a web server - instead it provides building blocks to
2020
make integration with existing servers straightforward. It optionally provides a
21-
pre-built integration for the [Actix][actix], [Hyper][hyper], [Iron][iron], [Rocket], and [Warp][warp] frameworks, including
21+
pre-built integration for the [Actix][actix], [Hyper][hyper], [Rocket], and [Warp][warp] frameworks, including
2222
embedded [Graphiql][graphiql] and [GraphQL Playground][playground] for easy debugging.
2323

2424
- [Cargo crate](https://crates.io/crates/juniper)
@@ -42,7 +42,7 @@ For specific information about macros, types and the Juniper api, the
4242
You can also check out the [Star Wars schema][test_schema_rs] to see a complex
4343
example including polymorphism with traits and interfaces.
4444
For an example of web framework integration,
45-
see the [actix][actix_examples], [hyper][hyper_examples], [rocket][rocket_examples], [iron][iron_examples], and [warp][warp_examples] examples folders.
45+
see the [actix][actix_examples], [axum][axum_examples], [hyper][hyper_examples], [rocket][rocket_examples], and [warp][warp_examples] examples folders.
4646

4747
## Features
4848

@@ -82,7 +82,6 @@ your Schemas automatically.
8282
- [axum][axum]
8383
- [hyper][hyper]
8484
- [rocket][rocket]
85-
- [iron][iron]
8685
- [warp][warp]
8786

8887
## Guides & Examples
@@ -98,16 +97,15 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
9897
[graphql]: http://graphql.org
9998
[graphiql]: https://github.com/graphql/graphiql
10099
[playground]: https://github.com/prisma/graphql-playground
101-
[iron]: https://github.com/iron/iron
102100
[graphql_spec]: https://spec.graphql.org/October2021
103101
[schema_language]: https://graphql.org/learn/schema/#type-language
104102
[schema_approach]: https://blog.logrocket.com/code-first-vs-schema-first-development-graphql/
105103
[test_schema_rs]: https://github.com/graphql-rust/juniper/blob/master/juniper/src/tests/fixtures/starwars/schema.rs
106104
[tokio]: https://github.com/tokio-rs/tokio
107105
[actix_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_actix/examples
106+
[axum_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_axum/examples
108107
[hyper_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_hyper/examples
109108
[rocket_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_rocket/examples
110-
[iron_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_iron/examples
111109
[hyper]: https://hyper.rs
112110
[rocket]: https://rocket.rs
113111
[book]: https://graphql-rust.github.io

book/src/README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ GraphQL schemas as convenient as possible as Rust will allow.
1212

1313
Juniper does not include a web server - instead it provides building blocks to
1414
make integration with existing servers straightforward. It optionally provides a
15-
pre-built integration for the [Hyper][hyper], [Iron][iron], [Rocket], and [Warp][warp] frameworks, including
15+
pre-built integration for the [Hyper][hyper], [Rocket], and [Warp][warp] frameworks, including
1616
embedded [Graphiql][graphiql] for easy debugging.
1717

1818
- [Cargo crate](https://crates.io/crates/juniper)
@@ -47,7 +47,6 @@ your Schemas automatically.
4747

4848
- [hyper][hyper]
4949
- [rocket][rocket]
50-
- [iron][iron]
5150
- [warp][warp]
5251

5352
## API Stability
@@ -56,13 +55,11 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
5655

5756
[graphql]: http://graphql.org
5857
[graphiql]: https://github.com/graphql/graphiql
59-
[iron]: https://github.com/iron/iron
6058
[graphql_spec]: https://spec.graphql.org/October2021
6159
[test_schema_rs]: https://github.com/graphql-rust/juniper/blob/master/juniper/src/tests/schema.rs
6260
[tokio]: https://github.com/tokio-rs/tokio
6361
[hyper_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_hyper/examples
6462
[rocket_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_rocket/examples
65-
[iron_examples]: https://github.com/graphql-rust/juniper/tree/master/juniper_iron/examples
6663
[hyper]: https://hyper.rs
6764
[rocket]: https://rocket.rs
6865
[book]: https://graphql-rust.github.io

book/src/SUMMARY.md

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
- [Official Server Integrations](servers/official.md) - [Hyper](servers/hyper.md)
2222
- [Warp](servers/warp.md)
2323
- [Rocket](servers/rocket.md)
24-
- [Iron](servers/iron.md)
2524
- [Hyper](servers/hyper.md)
2625
- [Third Party Integrations](servers/third-party.md)
2726

book/src/quickstart.md

-1
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,5 @@ fn main() {
205205
[hyper]: servers/hyper.md
206206
[warp]: servers/warp.md
207207
[rocket]: servers/rocket.md
208-
[iron]: servers/iron.md
209208
[tutorial]: ./tutorial.html
210209
[graphql_object]: https://docs.rs/juniper/latest/juniper/macro.graphql_object.html

book/src/servers/index.md

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ third-party integration crates that will get you there.
99
- [Official Server Integrations](official.md)
1010
- [Warp](warp.md)
1111
- [Rocket](rocket.md)
12-
- [Iron](iron.md)
1312
- [Hyper](hyper.md)
1413
- [Third Party Integrations](third-party.md)
1514
- [Actix-Web](https://github.com/actix/examples/tree/master/graphql/juniper)

book/src/servers/iron.md

-122
This file was deleted.

book/src/servers/official.md

-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ libraries.
55

66
- [Warp](warp.md)
77
- [Rocket](rocket.md)
8-
- [Iron](iron.md)
98
- [Hyper](hyper.md)

book/src/types/objects/using_contexts.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ The context type is a feature in Juniper that lets field resolvers access global
44
data, most commonly database connections or authentication information. The
55
context is usually created from a _context factory_. How this is defined is
66
specific to the framework integration you're using, so check out the
7-
documentation for either the [Iron](../../servers/iron.md) or [Rocket](../../servers/rocket.md)
8-
integration.
7+
documentation for [Rocket](../../servers/rocket.md) integration.
98

109
In this chapter, we'll show you how to define a context type and use it in field
1110
resolvers. Let's say that we have a simple user database in a `HashMap`:

juniper/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ As an exception to other [GraphQL] libraries for other languages, [Juniper] buil
6060
- [`actix-web`] ([`juniper_actix`] crate)
6161
- [`axum`] ([`juniper_axum`] crate)
6262
- [`hyper`] ([`juniper_hyper`] crate)
63-
- [`iron`] ([`juniper_iron`] crate)
6463
- [`rocket`] ([`juniper_rocket`] crate)
6564
- [`warp`] ([`juniper_warp`] crate)
6665

@@ -90,11 +89,9 @@ This project is licensed under [BSD 2-Clause License](https://github.com/graphql
9089
[`juniper_actix`]: https://docs.rs/juniper_actix
9190
[`juniper_axum`]: https://docs.rs/juniper_axum
9291
[`juniper_hyper`]: https://docs.rs/juniper_hyper
93-
[`juniper_iron`]: https://docs.rs/juniper_iron
9492
[`juniper_rocket`]: https://docs.rs/juniper_rocket
9593
[`juniper_warp`]: https://docs.rs/juniper_warp
9694
[`hyper`]: https://docs.rs/hyper
97-
[`iron`]: https://docs.rs/iron
9895
[`rocket`]: https://docs.rs/rocket
9996
[`rust_decimal`]: https://docs.rs/rust_decimal
10097
[`time`]: https://docs.rs/time

juniper/release.toml

-11
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ exactly = 1
1919
search = "juniper = \"[^\"]+\""
2020
replace = "juniper = \"{{version}}\""
2121
[[pre-release-replacements]]
22-
file = "../book/src/servers/iron.md"
23-
exactly = 1
24-
search = "juniper = \"[^\"]+\""
25-
replace = "juniper = \"{{version}}\""
26-
[[pre-release-replacements]]
2722
file = "../book/src/servers/rocket.md"
2823
exactly = 1
2924
search = "juniper = \"[^\"]+\""
@@ -58,12 +53,6 @@ exactly = 2
5853
search = "juniper = \\{ version = \"[^\"]+\""
5954
replace = "juniper = { version = \"{{version}}\""
6055

61-
[[pre-release-replacements]]
62-
file = "../juniper_iron/Cargo.toml"
63-
exactly = 2
64-
search = "juniper = \\{ version = \"[^\"]+\""
65-
replace = "juniper = { version = \"{{version}}\""
66-
6756
[[pre-release-replacements]]
6857
file = "../juniper_rocket/Cargo.toml"
6958
exactly = 2

juniper/src/executor/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ where
626626
/// Access the current context
627627
///
628628
/// You usually provide the context when calling the top-level `execute`
629-
/// function, or using the context factory in the Iron integration.
629+
/// function, or using the context factory.
630630
pub fn context(&self) -> &'r CtxT {
631631
self.context
632632
}

juniper_iron/CHANGELOG.md

-26
This file was deleted.

juniper_iron/Cargo.toml

-34
This file was deleted.

0 commit comments

Comments
 (0)