diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c1626c77..b60e47249 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: needs: basics steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@1.76 + - uses: dtolnay/rust-toolchain@1.79 - uses: Swatinem/rust-cache@v2 - run: cargo build diff --git a/crates/rune-alloc-macros/Cargo.toml b/crates/rune-alloc-macros/Cargo.toml index a5df89c03..23df30503 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.14.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.76" +rust-version = "1.79" 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 528d263bf..0163d0fb6 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.76+. +//! Minimum support: Rust 1.79+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-alloc/Cargo.toml b/crates/rune-alloc/Cargo.toml index fd619bba4..7dcf3fe44 100644 --- a/crates/rune-alloc/Cargo.toml +++ b/crates/rune-alloc/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-alloc" version = "0.14.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.76" +rust-version = "1.79" 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 dea2742fa..61cd4f2d0 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.76+. +//! Minimum support: Rust 1.79+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-cli/Cargo.toml b/crates/rune-cli/Cargo.toml index 34e594551..d22c53339 100644 --- a/crates/rune-cli/Cargo.toml +++ b/crates/rune-cli/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-cli" version = "0.14.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.76" +rust-version = "1.79" 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 45dc54516..becb225cf 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.76+. +//! Minimum support: Rust 1.79+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-core/Cargo.toml b/crates/rune-core/Cargo.toml index e6250e84f..748c04492 100644 --- a/crates/rune-core/Cargo.toml +++ b/crates/rune-core/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-core" version = "0.14.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.76" +rust-version = "1.79" 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 d56e3dd93..5e3878040 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.76+. +//! Minimum support: Rust 1.79+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-languageserver/Cargo.toml b/crates/rune-languageserver/Cargo.toml index a8360efad..5f80a1eac 100644 --- a/crates/rune-languageserver/Cargo.toml +++ b/crates/rune-languageserver/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-languageserver" version = "0.14.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.76" +rust-version = "1.79" 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 44bcf0d75..f8d1a5c08 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.76+. +//! Minimum support: Rust 1.79+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-macros/Cargo.toml b/crates/rune-macros/Cargo.toml index f8df9df87..c845f6b60 100644 --- a/crates/rune-macros/Cargo.toml +++ b/crates/rune-macros/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-macros" version = "0.14.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.76" +rust-version = "1.79" 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 adf5b22c9..ebb5c1209 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.76+. +//! Minimum support: Rust 1.79+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-modules/Cargo.toml b/crates/rune-modules/Cargo.toml index df71224f4..8f4c588f6 100644 --- a/crates/rune-modules/Cargo.toml +++ b/crates/rune-modules/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-modules" version = "0.14.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.76" +rust-version = "1.79" 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 031761f20..10349f03b 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.76+. +//! Minimum support: Rust 1.79+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune-wasm/Cargo.toml b/crates/rune-wasm/Cargo.toml index eed68459f..0133e27f2 100644 --- a/crates/rune-wasm/Cargo.toml +++ b/crates/rune-wasm/Cargo.toml @@ -3,7 +3,7 @@ name = "rune-wasm" version = "0.14.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.76" +rust-version = "1.79" 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 871c8e0f1..781475a82 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.76+. +//! Minimum support: Rust 1.79+. //!
//!
//! Visit the site 🌐 diff --git a/crates/rune/Cargo.toml b/crates/rune/Cargo.toml index 44854411f..9956f0c42 100644 --- a/crates/rune/Cargo.toml +++ b/crates/rune/Cargo.toml @@ -3,7 +3,7 @@ name = "rune" version = "0.14.0" authors = ["John-John Tedro "] edition = "2021" -rust-version = "1.76" +rust-version = "1.79" 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 0ea5379f1..ce0eaae11 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.76+. +//! Minimum support: Rust 1.79+. //!
//!
//! Visit the site 🌐