We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 637e5ea commit 1d93a03Copy full SHA for 1d93a03
src/rust/iced-x86-py/Cargo.toml
@@ -12,7 +12,7 @@ crate-type = ["cdylib"]
12
bincode = "1.3.3"
13
14
[dependencies.pyo3]
15
-version = "0.25.0"
+version = "0.26.0"
16
default-features = false
17
features = ["macros", "extension-module", "abi3-py38"]
18
src/rust/iced-x86-py/src/decoder.rs
@@ -15,7 +15,7 @@ enum DecoderDataRef {
None,
Vec(#[allow(dead_code)] Vec<u8>),
#[allow(dead_code)]
- PyObj(PyObject),
+ PyObj(Py<PyAny>),
19
}
20
21
/// Decodes 16/32/64-bit x86 instructions
0 commit comments