From 8b4cbd3bb8017448292c16cf4f8e5e511eea4417 Mon Sep 17 00:00:00 2001 From: wtfsck Date: Wed, 18 Oct 2023 17:55:40 +0200 Subject: [PATCH 1/2] New clippy warning --- src/rust/iced-x86/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rust/iced-x86/src/lib.rs b/src/rust/iced-x86/src/lib.rs index 1848ee1c9..af6650275 100644 --- a/src/rust/iced-x86/src/lib.rs +++ b/src/rust/iced-x86/src/lib.rs @@ -35,6 +35,7 @@ #![allow(clippy::needless_late_init)] #![allow(clippy::ptr_eq)] #![allow(clippy::redundant_closure)] // Clippy is buggy +#![allow(clippy::redundant_locals)] #![allow(clippy::too_many_arguments)] #![allow(clippy::type_complexity)] #![allow(clippy::upper_case_acronyms)] From a55679b64eb06f5db75756d3ddb15db4e5e38539 Mon Sep 17 00:00:00 2001 From: wtfsck Date: Wed, 18 Oct 2023 17:58:51 +0200 Subject: [PATCH 2/2] Bump deps --- src/csharp/Intel/Iced.UnitTests/Iced.UnitTests.csproj | 6 +++--- src/java/iced-x86/pom.xml | 2 +- src/rust/iced-x86-py/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/csharp/Intel/Iced.UnitTests/Iced.UnitTests.csproj b/src/csharp/Intel/Iced.UnitTests/Iced.UnitTests.csproj index d46ccd54e..c0b1242dd 100644 --- a/src/csharp/Intel/Iced.UnitTests/Iced.UnitTests.csproj +++ b/src/csharp/Intel/Iced.UnitTests/Iced.UnitTests.csproj @@ -15,9 +15,9 @@ - - - + + + diff --git a/src/java/iced-x86/pom.xml b/src/java/iced-x86/pom.xml index ce01e3bcf..b1fbae03e 100644 --- a/src/java/iced-x86/pom.xml +++ b/src/java/iced-x86/pom.xml @@ -110,7 +110,7 @@ maven-site-plugin - 4.0.0-M9 + 4.0.0-M11 maven-project-info-reports-plugin diff --git a/src/rust/iced-x86-py/Cargo.toml b/src/rust/iced-x86-py/Cargo.toml index 8a8dbb22e..198c42dc1 100644 --- a/src/rust/iced-x86-py/Cargo.toml +++ b/src/rust/iced-x86-py/Cargo.toml @@ -13,7 +13,7 @@ crate-type = ["cdylib"] bincode = "1.3.3" [dependencies.pyo3] -version = "0.19.0" +version = "0.20.0" default-features = false features = ["macros", "extension-module", "abi3-py38"]