From 76433a2274fea7ad1b0bd7cb27cd3f02348172a9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 05:17:40 +0000 Subject: [PATCH 1/2] Initial plan From 931657fcd75169fd791fb2aba3c3155a8d7476f1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 05:22:47 +0000 Subject: [PATCH 2/2] Upgrade to Rust edition 2024 Co-authored-by: youknowone <69878+youknowone@users.noreply.github.com> --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bf8465b..3906af9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,12 +2,12 @@ name = "mt19937" version = "3.2.0" authors = ["Noa ", "RustPython Team"] -edition = "2021" +edition = "2024" license-file = "LICENSE" description = "A translation of the MT19937 Mersenne Twister rng algorithm to Rust" documentation = "https://docs.rs/mt19937" repository = "https://github.com/RustPython/mt19937" -rust-version = "1.63" +rust-version = "1.85" [dependencies] rand_core = "0.9"