From 9fa5f720800d030936aa021eb411407f94afa974 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 20:59:46 +0200 Subject: [PATCH] Update serial_test requirement from 2 to 3 (#2171) Updates the requirements on [serial_test](https://github.com/palfrey/serial_test) to permit the latest version. - [Release notes](https://github.com/palfrey/serial_test/releases) - [Commits](https://github.com/palfrey/serial_test/compare/v2.0.0...v3.1.1) --- updated-dependencies: - dependency-name: serial_test dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dominik Maier --- libafl/Cargo.toml | 2 +- libafl_bolts/Cargo.toml | 2 +- libafl_frida/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libafl/Cargo.toml b/libafl/Cargo.toml index 644c2a8557..288035e12b 100644 --- a/libafl/Cargo.toml +++ b/libafl/Cargo.toml @@ -193,7 +193,7 @@ const_format = "0.2.32" # used for providing helpful compiler output const_panic = "0.2.8" # similarly, for formatting const panic output # optional-dev deps (change when target.'cfg(accessible(::std))'.test-dependencies will be stable) -serial_test = { version = "2", optional = true, default-features = false, features = ["logging"] } +serial_test = { version = "3", optional = true, default-features = false, features = ["logging"] } # Document all features of this crate (for `cargo doc`) document-features = { version = "0.2", optional = true } diff --git a/libafl_bolts/Cargo.toml b/libafl_bolts/Cargo.toml index 5cc08dcf9f..b1a45ffaeb 100644 --- a/libafl_bolts/Cargo.toml +++ b/libafl_bolts/Cargo.toml @@ -118,7 +118,7 @@ log = "0.4.20" pyo3 = { version = "0.18", optional = true, features = ["serde", "macros"] } # optional-dev deps (change when target.'cfg(accessible(::std))'.test-dependencies will be stable) -serial_test = { version = "2", optional = true, default-features = false, features = ["logging"] } +serial_test = { version = "3", optional = true, default-features = false, features = ["logging"] } # Document all features of this crate (for `cargo doc`) document-features = { version = "0.2", optional = true } diff --git a/libafl_frida/Cargo.toml b/libafl_frida/Cargo.toml index 2b092daad9..b50cb62464 100644 --- a/libafl_frida/Cargo.toml +++ b/libafl_frida/Cargo.toml @@ -84,6 +84,6 @@ mmap-rs = "0.6.0" yaxpeax-arch = "0.2.7" [dev-dependencies] -serial_test = { version = "2", default-features = false, features = ["logging"] } +serial_test = { version = "3", default-features = false, features = ["logging"] } clap = {version = "4.5", features = ["derive"]} libloading = "0.7"