From 3f2cf7360dc42a07a6aae5d12b63543141602b08 Mon Sep 17 00:00:00 2001 From: John-John Tedro Date: Thu, 7 Mar 2024 18:35:03 +0100 Subject: [PATCH] Bump MSRV --- .github/workflows/ci.yml | 2 +- crates/rune-alloc-macros/Cargo.toml | 2 +- crates/rune-alloc-macros/src/lib.rs | 2 +- crates/rune-alloc/Cargo.toml | 2 +- crates/rune-alloc/src/lib.rs | 2 +- crates/rune-cli/Cargo.toml | 2 +- crates/rune-cli/src/main.rs | 2 +- crates/rune-core/Cargo.toml | 2 +- crates/rune-core/src/lib.rs | 2 +- crates/rune-languageserver/Cargo.toml | 2 +- crates/rune-languageserver/src/main.rs | 2 +- crates/rune-macros/Cargo.toml | 2 +- crates/rune-macros/src/lib.rs | 2 +- crates/rune-modules/Cargo.toml | 2 +- crates/rune-modules/src/lib.rs | 2 +- crates/rune-wasm/Cargo.toml | 2 +- crates/rune-wasm/src/lib.rs | 2 +- crates/rune/Cargo.toml | 2 +- crates/rune/src/lib.rs | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f666076d8..75071da1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: needs: basics steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@1.70 + - uses: dtolnay/rust-toolchain@1.74 - uses: Swatinem/rust-cache@v2 - run: cargo build --workspace diff --git a/crates/rune-alloc-macros/Cargo.toml b/crates/rune-alloc-macros/Cargo.toml index 95b3e575f..adbdee64e 100644 --- a/crates/rune-alloc-macros/Cargo.toml +++ b/crates/rune-alloc-macros/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-alloc-macros" version = "0.13.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.70" +rust-version = "1.74" description = "Macros for alloc crate of the Rune Language, an embeddable dynamic programming language for Rust." documentation = "https://docs.rs/rune" readme = "README.md" diff --git a/crates/rune-alloc-macros/src/lib.rs b/crates/rune-alloc-macros/src/lib.rs index 5c315883d..94db523a8 100644 --- a/crates/rune-alloc-macros/src/lib.rs +++ b/crates/rune-alloc-macros/src/lib.rs @@ -5,7 +5,7 @@ //! docs.rs //! chat on discord //!
-//! Minimum support: Rust 1.70+. +//! Minimum support: Rust 1.74+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-alloc/Cargo.toml b/crates/rune-alloc/Cargo.toml index b09c57a9b..e9034cc2a 100644 --- a/crates/rune-alloc/Cargo.toml +++ b/crates/rune-alloc/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-alloc" version = "0.13.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.70" +rust-version = "1.74" description = "The Rune Language, an embeddable dynamic programming language for Rust." documentation = "https://docs.rs/rune" readme = "README.md" diff --git a/crates/rune-alloc/src/lib.rs b/crates/rune-alloc/src/lib.rs index 96bd01852..ff1a025aa 100644 --- a/crates/rune-alloc/src/lib.rs +++ b/crates/rune-alloc/src/lib.rs @@ -5,7 +5,7 @@ //! docs.rs //! chat on discord //!
-//! Minimum support: Rust 1.70+. +//! Minimum support: Rust 1.74+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-cli/Cargo.toml b/crates/rune-cli/Cargo.toml index 269590168..483396ddf 100644 --- a/crates/rune-cli/Cargo.toml +++ b/crates/rune-cli/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-cli" version = "0.13.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.70" +rust-version = "1.74" description = "An interpreter for the Rune Language, an embeddable dynamic programming language for Rust." documentation = "https://docs.rs/rune" readme = "README.md" diff --git a/crates/rune-cli/src/main.rs b/crates/rune-cli/src/main.rs index 80e136f84..a35bedcc6 100644 --- a/crates/rune-cli/src/main.rs +++ b/crates/rune-cli/src/main.rs @@ -5,7 +5,7 @@ //! docs.rs //! chat on discord //!
-//! Minimum support: Rust 1.70+. +//! Minimum support: Rust 1.74+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-core/Cargo.toml b/crates/rune-core/Cargo.toml index d0302d0ae..c286aa57d 100644 --- a/crates/rune-core/Cargo.toml +++ b/crates/rune-core/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-core" version = "0.13.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.70" +rust-version = "1.74" description = "Core components for the Rune Language, an embeddable dynamic programming language for Rust." documentation = "https://docs.rs/rune" readme = "README.md" diff --git a/crates/rune-core/src/lib.rs b/crates/rune-core/src/lib.rs index c8954efe1..1da05e05d 100644 --- a/crates/rune-core/src/lib.rs +++ b/crates/rune-core/src/lib.rs @@ -5,7 +5,7 @@ //! docs.rs //! chat on discord //!
-//! Minimum support: Rust 1.70+. +//! Minimum support: Rust 1.74+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-languageserver/Cargo.toml b/crates/rune-languageserver/Cargo.toml index 2d6a20075..d071c5f15 100644 --- a/crates/rune-languageserver/Cargo.toml +++ b/crates/rune-languageserver/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-languageserver" version = "0.13.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.70" +rust-version = "1.74" description = "A language server for the Rune Language, an embeddable dynamic programming language for Rust." documentation = "https://docs.rs/rune" readme = "README.md" diff --git a/crates/rune-languageserver/src/main.rs b/crates/rune-languageserver/src/main.rs index b71bd5847..e040f7307 100644 --- a/crates/rune-languageserver/src/main.rs +++ b/crates/rune-languageserver/src/main.rs @@ -5,7 +5,7 @@ //! docs.rs //! chat on discord //!
-//! Minimum support: Rust 1.70+. +//! Minimum support: Rust 1.74+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-macros/Cargo.toml b/crates/rune-macros/Cargo.toml index 7a898418b..3a1b1e809 100644 --- a/crates/rune-macros/Cargo.toml +++ b/crates/rune-macros/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-macros" version = "0.13.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.70" +rust-version = "1.74" description = "Macros for the Rune Language, an embeddable dynamic programming language for Rust." documentation = "https://docs.rs/rune" readme = "README.md" diff --git a/crates/rune-macros/src/lib.rs b/crates/rune-macros/src/lib.rs index f7f918a69..378987023 100644 --- a/crates/rune-macros/src/lib.rs +++ b/crates/rune-macros/src/lib.rs @@ -5,7 +5,7 @@ //! docs.rs //! chat on discord //!
-//! Minimum support: Rust 1.70+. +//! Minimum support: Rust 1.74+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-modules/Cargo.toml b/crates/rune-modules/Cargo.toml index 052bcabcf..0bb83b2de 100644 --- a/crates/rune-modules/Cargo.toml +++ b/crates/rune-modules/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-modules" version = "0.13.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.70" +rust-version = "1.74" description = "Native modules for Rune, an embeddable dynamic programming language for Rust." documentation = "https://docs.rs/rune" readme = "README.md" diff --git a/crates/rune-modules/src/lib.rs b/crates/rune-modules/src/lib.rs index 55b9e5a3e..63c1f82d2 100644 --- a/crates/rune-modules/src/lib.rs +++ b/crates/rune-modules/src/lib.rs @@ -5,7 +5,7 @@ //! docs.rs //! chat on discord //!
-//! Minimum support: Rust 1.70+. +//! Minimum support: Rust 1.74+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-wasm/Cargo.toml b/crates/rune-wasm/Cargo.toml index 9ad89cdb5..45bfd9a6e 100644 --- a/crates/rune-wasm/Cargo.toml +++ b/crates/rune-wasm/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-wasm" version = "0.13.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.70" +rust-version = "1.74" description = "A WASM module for the Rune Language, an embeddable dynamic programming language for Rust." documentation = "https://docs.rs/rune" readme = "README.md" diff --git a/crates/rune-wasm/src/lib.rs b/crates/rune-wasm/src/lib.rs index 6d4cb2669..4e7ae7f9b 100644 --- a/crates/rune-wasm/src/lib.rs +++ b/crates/rune-wasm/src/lib.rs @@ -5,7 +5,7 @@ //! docs.rs //! chat on discord //!
-//! Minimum support: Rust 1.70+. +//! Minimum support: Rust 1.74+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune/Cargo.toml b/crates/rune/Cargo.toml index 35d8f3699..d7e6b63a1 100644 --- a/crates/rune/Cargo.toml +++ b/crates/rune/Cargo.toml @@ -3,7 +3,7 @@ name = "rune" version = "0.13.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.70" +rust-version = "1.74" description = "The Rune Language, an embeddable dynamic programming language for Rust." documentation = "https://docs.rs/rune" readme = "README.md" diff --git a/crates/rune/src/lib.rs b/crates/rune/src/lib.rs index 1f17eb061..6ecb0f65c 100644 --- a/crates/rune/src/lib.rs +++ b/crates/rune/src/lib.rs @@ -5,7 +5,7 @@ //! docs.rs //! chat on discord //!
-//! Minimum support: Rust 1.70+. +//! Minimum support: Rust 1.74+. //!
//!
//! Visit the site 🌐