From 209d38a768ffb56530f669104fb16259856bf043 Mon Sep 17 00:00:00 2001 From: David CARLIER Date: Thu, 24 Aug 2023 20:41:26 +0100 Subject: [PATCH] bolts: disable build for rust < 1.70 proposal. (#1460) mostly due std::cell namespace introduction in the 1.70 version. as rust versions evolve fast enough, it might be easier than having conditional dependency on he old once_cell crate. --- libafl_bolts/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/libafl_bolts/Cargo.toml b/libafl_bolts/Cargo.toml index 72c23c5c66..5606e02100 100644 --- a/libafl_bolts/Cargo.toml +++ b/libafl_bolts/Cargo.toml @@ -10,6 +10,7 @@ license = "MIT OR Apache-2.0" keywords = ["fuzzing", "testing", "security"] edition = "2021" categories = ["development-tools::testing", "emulators", "embedded", "os", "no-std"] +rust-version = "1.70.0" [package.metadata.docs.rs] features = ["document-features"]