From 58bb64fac48268307ed0eb78953dca0493ac3847 Mon Sep 17 00:00:00 2001 From: jejuisland87654 Date: Wed, 26 Mar 2025 11:57:08 +0100 Subject: [PATCH] Upgrade pyo3 0.23.2 -> 0.24.0 (#3107) --- Cargo.toml | 2 +- bindings/pylibafl/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7782ce3e8f..88282dc1c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -110,7 +110,7 @@ paste = "1.0.15" postcard = { version = "1.0.10", features = [ "alloc", ], default-features = false } # no_std compatible serde serialization format -pyo3 = "0.23.2" +pyo3 = "0.24.0" pyo3-build-config = "0.24.0" rangemap = "1.5.1" regex = "1.10.6" diff --git a/bindings/pylibafl/Cargo.toml b/bindings/pylibafl/Cargo.toml index e3fa523df0..ad4c25e965 100644 --- a/bindings/pylibafl/Cargo.toml +++ b/bindings/pylibafl/Cargo.toml @@ -9,8 +9,8 @@ edition = "2024" categories = ["development-tools::testing", "emulators", "embedded", "os"] [dependencies] -pyo3 = { version = "0.23.2", features = ["extension-module"] } -pyo3-log = { version = "0.12.0" } +pyo3 = { version = "0.24.0", features = ["extension-module"] } +pyo3-log = { version = "0.12.2" } libafl_sugar = { path = "../../libafl_sugar", version = "0.15.2", features = [ "python", ] } @@ -24,7 +24,7 @@ libafl_qemu = { path = "../../libafl_qemu", version = "0.15.2", features = [ ] } [build-dependencies] -pyo3-build-config = "0.23.2" +pyo3-build-config = "0.24.0" [lib] name = "pylibafl"