X Tutup
Skip to content

Commit 1d93a03

Browse files
committed
bump pyo3
1 parent 637e5ea commit 1d93a03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/rust/iced-x86-py/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ crate-type = ["cdylib"]
1212
bincode = "1.3.3"
1313

1414
[dependencies.pyo3]
15-
version = "0.25.0"
15+
version = "0.26.0"
1616
default-features = false
1717
features = ["macros", "extension-module", "abi3-py38"]
1818

src/rust/iced-x86-py/src/decoder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ enum DecoderDataRef {
1515
None,
1616
Vec(#[allow(dead_code)] Vec<u8>),
1717
#[allow(dead_code)]
18-
PyObj(PyObject),
18+
PyObj(Py<PyAny>),
1919
}
2020

2121
/// Decodes 16/32/64-bit x86 instructions

0 commit comments

Comments
 (0)
X Tutup