From 35fd4ffeb29cff880352bb3e51102873c7699d0c Mon Sep 17 00:00:00 2001 From: saruman9 Date: Wed, 19 Jul 2023 16:35:35 +0400 Subject: [PATCH] fix(libafl): update Z3 dependency See https://github.com/Z3Prover/z3/issues/5586. libafl with `cmin` feature cannot be built for Android. --- libafl/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl/Cargo.toml b/libafl/Cargo.toml index e84a53d57d..9000b86f72 100644 --- a/libafl/Cargo.toml +++ b/libafl/Cargo.toml @@ -100,7 +100,7 @@ tokio = { version = "1.28.1", optional = true, features = ["sync", "net", "rt", wait-timeout = { version = "0.2", optional = true } # used by CommandExecutor to wait for child process -z3 = { version = "0.11", features = ["static-link-z3"], optional = true } # for concolic mutation +z3 = { version = "0.12.0", features = ["static-link-z3"], optional = true } # for concolic mutation pyo3 = { version = "0.18.3", optional = true, features = ["serde", "macros"] } concat-idents = { version = "1.1.3", optional = true }