CI (#1301)
* ci * fi * Revert "fi" This reverts commit ed298d71057607f019e64d58687273a01d30e260. * Revert "ci" This reverts commit 6b65936990143a6069abd56dcbe633ac37be2ede. * fi
This commit is contained in:
parent
356698c24b
commit
fa1e3fd504
@ -92,9 +92,9 @@ clap = {version = "4.0", features = ["derive", "wrap_help"], optional = true}
|
||||
|
||||
prometheus-client = { version= "0.19", optional = true}
|
||||
tide = { version = "0.16.0", optional = true }
|
||||
async-std = { version = "1.8.0", features = ["attributes"], optional = true }
|
||||
async-std = { version = "1.12.0", features = ["attributes"], optional = true }
|
||||
futures = { version = "0.3.24", optional = true }
|
||||
log = "0.4.17"
|
||||
log = "0.4.18"
|
||||
|
||||
wait-timeout = { version = "0.2", optional = true } # used by CommandExecutor to wait for child process
|
||||
|
||||
@ -106,7 +106,7 @@ concat-idents = { version = "1.1.3", optional = true }
|
||||
libcasr = { version = "2.5", optional = true}
|
||||
|
||||
# optional-dev deps (change when target.'cfg(accessible(::std))'.test-dependencies will be stable)
|
||||
serial_test = { version = "1", optional = true }
|
||||
serial_test = { version = "2", optional = true }
|
||||
|
||||
# AGPL
|
||||
# !!! this create requires nightly
|
||||
|
@ -551,7 +551,7 @@ where
|
||||
.field("forkserver", &self.forkserver)
|
||||
.field("observers", &self.observers)
|
||||
.field("map", &self.map)
|
||||
.finish()
|
||||
.finish_non_exhaustive()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -133,7 +133,7 @@ impl<E: Debug> Debug for TimeoutExecutor<E> {
|
||||
&(&self.itimerspec.it_value.tv_sec * 1000
|
||||
+ &self.itimerspec.it_value.tv_nsec / 1000 / 1000),
|
||||
)
|
||||
.finish()
|
||||
.finish_non_exhaustive()
|
||||
}
|
||||
|
||||
#[cfg(all(unix, not(target_os = "linux")))]
|
||||
@ -141,7 +141,7 @@ impl<E: Debug> Debug for TimeoutExecutor<E> {
|
||||
f.debug_struct("TimeoutExecutor")
|
||||
.field("executor", &self.executor)
|
||||
.field("itimerval", &self.itimerval)
|
||||
.finish()
|
||||
.finish_non_exhaustive()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -11,6 +11,7 @@ Welcome to `LibAFL`
|
||||
// For `std::simd`
|
||||
#![cfg_attr(unstable_feature, feature(portable_simd))]
|
||||
#![warn(clippy::cargo)]
|
||||
#![allow(ambiguous_glob_reexports)]
|
||||
#![deny(clippy::cargo_common_metadata)]
|
||||
#![deny(rustdoc::broken_intra_doc_links)]
|
||||
#![deny(clippy::all)]
|
||||
@ -24,7 +25,8 @@ Welcome to `LibAFL`
|
||||
clippy::ptr_as_ptr,
|
||||
clippy::missing_panics_doc,
|
||||
clippy::missing_docs_in_private_items,
|
||||
clippy::module_name_repetitions
|
||||
clippy::module_name_repetitions,
|
||||
clippy::ptr_cast_constness
|
||||
)]
|
||||
#]
|
||||
#![cfg_attr(not(test), warn(
|
||||
missing_debug_implementations,
|
||||
|
@ -111,7 +111,7 @@ impl core::fmt::Debug for AsanGiovese {
|
||||
f.debug_struct("AsanGiovese")
|
||||
.field("alloc_tree", &self.alloc_tree)
|
||||
.field("dirty_shadow", &self.dirty_shadow)
|
||||
.finish()
|
||||
.finish_non_exhaustive()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -8,6 +8,7 @@
|
||||
)]
|
||||
#![allow(clippy::needless_pass_by_value)]
|
||||
#![allow(clippy::transmute_ptr_to_ptr)]
|
||||
#![allow(clippy::ptr_cast_constness)]
|
||||
#![allow(clippy::too_many_arguments)]
|
||||
// Till they fix this buggy lint in clippy
|
||||
#![allow(clippy::borrow_as_ptr)]
|
||||
|
@ -88,7 +88,7 @@ impl core::fmt::Debug for QemuSnapshotHelper {
|
||||
.field("mmap_start", &self.mmap_start)
|
||||
.field("mmap_limit", &self.mmap_limit)
|
||||
.field("empty", &self.empty)
|
||||
.finish()
|
||||
.finish_non_exhaustive()
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user