From 3a5b8e81d0e91003c9ca1621c41122de322e20be Mon Sep 17 00:00:00 2001 From: Sergey Kvachonok Date: Sun, 1 Jun 2025 12:56:27 +0300 Subject: [PATCH] build: Set the crate MSRV to silence Clippy warnings Adopt the same MSRV policy as PyO3. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 95340f2..62ef593 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,7 @@ name = "python3-dll-a" version = "0.2.14" edition = "2021" +rust-version = "1.63" description = "Standalone python3(y)(t).dll import library generator" repository = "https://github.com/PyO3/python3-dll-a" authors = ["Sergey Kvachonok ", "messense ", "Adam Reichold "]