diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bbe6803..0bf6b175 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -157,7 +157,7 @@ jobs: strategy: fail-fast: false matrix: - msrv: ["1.62.0"] + msrv: ["1.65.0"] crate: - juniper_codegen - juniper diff --git a/examples/actix_subscriptions/Cargo.toml b/examples/actix_subscriptions/Cargo.toml index e4cc2e34..923af69a 100644 --- a/examples/actix_subscriptions/Cargo.toml +++ b/examples/actix_subscriptions/Cargo.toml @@ -2,7 +2,7 @@ name = "example_actix_subscriptions" version = "0.0.0" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" authors = ["Mihai Dinculescu "] publish = false diff --git a/examples/basic_subscriptions/Cargo.toml b/examples/basic_subscriptions/Cargo.toml index 252bdbeb..ee26a299 100644 --- a/examples/basic_subscriptions/Cargo.toml +++ b/examples/basic_subscriptions/Cargo.toml @@ -2,7 +2,7 @@ name = "example_basic_subscriptions" version = "0.0.0" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" authors = ["Jordao Rosario "] publish = false diff --git a/examples/warp_async/Cargo.toml b/examples/warp_async/Cargo.toml index 66dd9ca6..a09d6615 100644 --- a/examples/warp_async/Cargo.toml +++ b/examples/warp_async/Cargo.toml @@ -2,7 +2,7 @@ name = "example_warp_async" version = "0.0.0" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" authors = ["Christoph Herzog "] publish = false diff --git a/examples/warp_subscriptions/Cargo.toml b/examples/warp_subscriptions/Cargo.toml index 5c246ab4..b0338123 100644 --- a/examples/warp_subscriptions/Cargo.toml +++ b/examples/warp_subscriptions/Cargo.toml @@ -2,7 +2,7 @@ name = "example_warp_subscriptions" version = "0.0.0" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" publish = false [dependencies] diff --git a/juniper/Cargo.toml b/juniper/Cargo.toml index 5b4fcabc..5a017b14 100644 --- a/juniper/Cargo.toml +++ b/juniper/Cargo.toml @@ -2,7 +2,7 @@ name = "juniper" version = "0.16.0-dev" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" description = "GraphQL server library." license = "BSD-2-Clause" authors = [ diff --git a/juniper/README.md b/juniper/README.md index 39fb2dbe..17ed085b 100644 --- a/juniper/README.md +++ b/juniper/README.md @@ -4,7 +4,7 @@ Juniper (GraphQL server library for Rust) [![Crates.io](https://img.shields.io/crates/v/juniper.svg?maxAge=2592000)](https://crates.io/crates/juniper) [![Documentation](https://docs.rs/juniper/badge.svg)](https://docs.rs/juniper) [![CI](https://github.com/graphql-rust/juniper/workflows/CI/badge.svg?branch=master "CI")](https://github.com/graphql-rust/juniper/actions?query=workflow%3ACI+branch%3Amaster) -[![Rust 1.62+](https://img.shields.io/badge/rustc-1.62+-lightgray.svg "Rust 1.62+")](https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html) +[![Rust 1.65+](https://img.shields.io/badge/rustc-1.65+-lightgray.svg "Rust 1.65+")](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) - [Juniper Book] ([current][Juniper Book] | [edge][Juniper Book edge]) - [Changelog](https://github.com/graphql-rust/juniper/blob/master/juniper/CHANGELOG.md) diff --git a/juniper_actix/Cargo.toml b/juniper_actix/Cargo.toml index f1d13276..17afe798 100644 --- a/juniper_actix/Cargo.toml +++ b/juniper_actix/Cargo.toml @@ -2,7 +2,7 @@ name = "juniper_actix" version = "0.5.0-dev" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" description = "`juniper` GraphQL integration with `actix-web`." license = "BSD-2-Clause" authors = ["Jordao Rosario "] diff --git a/juniper_actix/README.md b/juniper_actix/README.md index 4769c57d..45192b68 100644 --- a/juniper_actix/README.md +++ b/juniper_actix/README.md @@ -4,7 +4,7 @@ [![Crates.io](https://img.shields.io/crates/v/juniper_actix.svg?maxAge=2592000)](https://crates.io/crates/juniper_actix) [![Documentation](https://docs.rs/juniper_actix/badge.svg)](https://docs.rs/juniper_actix) [![CI](https://github.com/graphql-rust/juniper/workflows/CI/badge.svg?branch=master "CI")](https://github.com/graphql-rust/juniper/actions?query=workflow%3ACI+branch%3Amaster) -[![Rust 1.62+](https://img.shields.io/badge/rustc-1.62+-lightgray.svg "Rust 1.62+")](https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html) +[![Rust 1.65+](https://img.shields.io/badge/rustc-1.65+-lightgray.svg "Rust 1.65+")](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) - [Changelog](https://github.com/graphql-rust/juniper/blob/master/juniper_actix/CHANGELOG.md) diff --git a/juniper_codegen/Cargo.toml b/juniper_codegen/Cargo.toml index ee4c022c..c29edb7e 100644 --- a/juniper_codegen/Cargo.toml +++ b/juniper_codegen/Cargo.toml @@ -2,7 +2,7 @@ name = "juniper_codegen" version = "0.16.0-dev" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" description = "Code generation for `juniper` crate." license = "BSD-2-Clause" authors = [ diff --git a/juniper_codegen/README.md b/juniper_codegen/README.md index 5cf8861f..c02b2054 100644 --- a/juniper_codegen/README.md +++ b/juniper_codegen/README.md @@ -4,7 +4,7 @@ [![Crates.io](https://img.shields.io/crates/v/juniper_codegen.svg?maxAge=2592000)](https://crates.io/crates/juniper_codegen) [![Documentation](https://docs.rs/juniper_codegen/badge.svg)](https://docs.rs/juniper_codegen) [![CI](https://github.com/graphql-rust/juniper/workflows/CI/badge.svg?branch=master "CI")](https://github.com/graphql-rust/juniper/actions?query=workflow%3ACI+branch%3Amaster) -[![Rust 1.62+](https://img.shields.io/badge/rustc-1.62+-lightgray.svg "Rust 1.62+")](https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html) +[![Rust 1.65+](https://img.shields.io/badge/rustc-1.65+-lightgray.svg "Rust 1.65+")](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) - [Changelog](https://github.com/graphql-rust/juniper/blob/master/juniper_codegen/CHANGELOG.md) diff --git a/juniper_graphql_ws/Cargo.toml b/juniper_graphql_ws/Cargo.toml index 38da4352..44d3873f 100644 --- a/juniper_graphql_ws/Cargo.toml +++ b/juniper_graphql_ws/Cargo.toml @@ -2,7 +2,7 @@ name = "juniper_graphql_ws" version = "0.4.0-dev" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" description = "GraphQL over WebSocket Protocol implementation for `juniper` crate." license = "BSD-2-Clause" authors = ["Christopher Brown "] diff --git a/juniper_graphql_ws/README.md b/juniper_graphql_ws/README.md index 0f981e89..90175a53 100644 --- a/juniper_graphql_ws/README.md +++ b/juniper_graphql_ws/README.md @@ -4,7 +4,7 @@ [![Crates.io](https://img.shields.io/crates/v/juniper_graphql_ws.svg?maxAge=2592000)](https://crates.io/crates/juniper_graphql_ws) [![Documentation](https://docs.rs/juniper_graphql_ws/badge.svg)](https://docs.rs/juniper_graphql_ws) [![CI](https://github.com/graphql-rust/juniper/workflows/CI/badge.svg?branch=master "CI")](https://github.com/graphql-rust/juniper/actions?query=workflow%3ACI+branch%3Amaster) -[![Rust 1.62+](https://img.shields.io/badge/rustc-1.62+-lightgray.svg "Rust 1.62+")](https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html) +[![Rust 1.65+](https://img.shields.io/badge/rustc-1.65+-lightgray.svg "Rust 1.65+")](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) - [Changelog](https://github.com/graphql-rust/juniper/blob/master/juniper_graphql_ws/CHANGELOG.md) diff --git a/juniper_hyper/Cargo.toml b/juniper_hyper/Cargo.toml index 3d2cdfc3..4d5d1a6c 100644 --- a/juniper_hyper/Cargo.toml +++ b/juniper_hyper/Cargo.toml @@ -2,7 +2,7 @@ name = "juniper_hyper" version = "0.9.0-dev" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" description = "`juniper` GraphQL integration with `hyper`." license = "BSD-2-Clause" authors = ["Damir Vandic "] diff --git a/juniper_hyper/README.md b/juniper_hyper/README.md index a8b43a35..38e73a47 100644 --- a/juniper_hyper/README.md +++ b/juniper_hyper/README.md @@ -4,7 +4,7 @@ [![Crates.io](https://img.shields.io/crates/v/juniper_hyper.svg?maxAge=2592000)](https://crates.io/crates/juniper_hyper) [![Documentation](https://docs.rs/juniper_hyper/badge.svg)](https://docs.rs/juniper_hyper) [![CI](https://github.com/graphql-rust/juniper/workflows/CI/badge.svg?branch=master "CI")](https://github.com/graphql-rust/juniper/actions?query=workflow%3ACI+branch%3Amaster) -[![Rust 1.62+](https://img.shields.io/badge/rustc-1.62+-lightgray.svg "Rust 1.62+")](https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html) +[![Rust 1.65+](https://img.shields.io/badge/rustc-1.65+-lightgray.svg "Rust 1.65+")](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) - [Changelog](https://github.com/graphql-rust/juniper/blob/master/juniper_hyper/CHANGELOG.md) diff --git a/juniper_iron/Cargo.toml b/juniper_iron/Cargo.toml index 726aa651..1676d947 100644 --- a/juniper_iron/Cargo.toml +++ b/juniper_iron/Cargo.toml @@ -2,7 +2,7 @@ name = "juniper_iron" version = "0.8.0-dev" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" description = "`juniper` GraphQL integration with `iron`." license = "BSD-2-Clause" authors = [ diff --git a/juniper_iron/README.md b/juniper_iron/README.md index 4654ef0e..51fa29b6 100644 --- a/juniper_iron/README.md +++ b/juniper_iron/README.md @@ -4,7 +4,7 @@ [![Crates.io](https://img.shields.io/crates/v/juniper_iron.svg?maxAge=2592000)](https://crates.io/crates/juniper_iron) [![Documentation](https://docs.rs/juniper_iron/badge.svg)](https://docs.rs/juniper_iron) [![CI](https://github.com/graphql-rust/juniper/workflows/CI/badge.svg?branch=master "CI")](https://github.com/graphql-rust/juniper/actions?query=workflow%3ACI+branch%3Amaster) -[![Rust 1.62+](https://img.shields.io/badge/rustc-1.62+-lightgray.svg "Rust 1.62+")](https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html) +[![Rust 1.65+](https://img.shields.io/badge/rustc-1.65+-lightgray.svg "Rust 1.65+")](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) - [Changelog](https://github.com/graphql-rust/juniper/blob/master/juniper_iron/CHANGELOG.md) diff --git a/juniper_rocket/Cargo.toml b/juniper_rocket/Cargo.toml index 1473b2d6..bc8b09f1 100644 --- a/juniper_rocket/Cargo.toml +++ b/juniper_rocket/Cargo.toml @@ -2,7 +2,7 @@ name = "juniper_rocket" version = "0.9.0-dev" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" description = "`juniper` GraphQL integration with `rocket`." license = "BSD-2-Clause" authors = [ diff --git a/juniper_rocket/README.md b/juniper_rocket/README.md index 4d0362ce..929d9314 100644 --- a/juniper_rocket/README.md +++ b/juniper_rocket/README.md @@ -4,7 +4,7 @@ [![Crates.io](https://img.shields.io/crates/v/juniper_rocket.svg?maxAge=2592000)](https://crates.io/crates/juniper_rocket) [![Documentation](https://docs.rs/juniper_rocket/badge.svg)](https://docs.rs/juniper_rocket) [![CI](https://github.com/graphql-rust/juniper/workflows/CI/badge.svg?branch=master "CI")](https://github.com/graphql-rust/juniper/actions?query=workflow%3ACI+branch%3Amaster) -[![Rust 1.62+](https://img.shields.io/badge/rustc-1.62+-lightgray.svg "Rust 1.62+")](https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html) +[![Rust 1.65+](https://img.shields.io/badge/rustc-1.65+-lightgray.svg "Rust 1.65+")](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) - [Changelog](https://github.com/graphql-rust/juniper/blob/master/juniper_rocket/CHANGELOG.md) diff --git a/juniper_subscriptions/Cargo.toml b/juniper_subscriptions/Cargo.toml index 5c054205..5f02c2d6 100644 --- a/juniper_subscriptions/Cargo.toml +++ b/juniper_subscriptions/Cargo.toml @@ -2,7 +2,7 @@ name = "juniper_subscriptions" version = "0.17.0-dev" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" description = "Juniper `SubscriptionCoordinator` and `SubscriptionConnection` implementations." license = "BSD-2-Clause" authors = ["nWacky "] diff --git a/juniper_subscriptions/README.md b/juniper_subscriptions/README.md index 272903b9..f77245c6 100644 --- a/juniper_subscriptions/README.md +++ b/juniper_subscriptions/README.md @@ -4,7 +4,7 @@ [![Crates.io](https://img.shields.io/crates/v/juniper_subscriptions.svg?maxAge=2592000)](https://crates.io/crates/juniper_subscriptions) [![Documentation](https://docs.rs/juniper_subscriptions/badge.svg)](https://docs.rs/juniper_subscriptions) [![CI](https://github.com/graphql-rust/juniper/workflows/CI/badge.svg?branch=master "CI")](https://github.com/graphql-rust/juniper/actions?query=workflow%3ACI+branch%3Amaster) -[![Rust 1.62+](https://img.shields.io/badge/rustc-1.62+-lightgray.svg "Rust 1.62+")](https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html) +[![Rust 1.65+](https://img.shields.io/badge/rustc-1.65+-lightgray.svg "Rust 1.65+")](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) - [Changelog](https://github.com/graphql-rust/juniper/blob/master/juniper_subscriptions/CHANGELOG.md) diff --git a/juniper_warp/Cargo.toml b/juniper_warp/Cargo.toml index 1ad73f0c..3fbe45fe 100644 --- a/juniper_warp/Cargo.toml +++ b/juniper_warp/Cargo.toml @@ -2,7 +2,7 @@ name = "juniper_warp" version = "0.8.0-dev" edition = "2021" -rust-version = "1.62" +rust-version = "1.65" description = "`juniper` GraphQL integration with `warp`." license = "BSD-2-Clause" authors = ["Tom Houlé "] diff --git a/juniper_warp/README.md b/juniper_warp/README.md index 2d7b2440..5679e19a 100644 --- a/juniper_warp/README.md +++ b/juniper_warp/README.md @@ -4,7 +4,7 @@ [![Crates.io](https://img.shields.io/crates/v/juniper_warp.svg?maxAge=2592000)](https://crates.io/crates/juniper_warp) [![Documentation](https://docs.rs/juniper_warp/badge.svg)](https://docs.rs/juniper_warp) [![CI](https://github.com/graphql-rust/juniper/workflows/CI/badge.svg?branch=master "CI")](https://github.com/graphql-rust/juniper/actions?query=workflow%3ACI+branch%3Amaster) -[![Rust 1.62+](https://img.shields.io/badge/rustc-1.62+-lightgray.svg "Rust 1.62+")](https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html) +[![Rust 1.65+](https://img.shields.io/badge/rustc-1.65+-lightgray.svg "Rust 1.65+")](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) - [Changelog](https://github.com/graphql-rust/juniper/blob/master/juniper_warp/CHANGELOG.md)