parent
d6fe67c3c8
commit
e745401a39
@ -27,8 +27,13 @@
|
||||
//! # SymCC and SymQEMU expect to runtime file to be called `libSymRuntime.so`. Setting the name to `SymRuntime` achieves this.
|
||||
//! name = "SymRuntime"
|
||||
//! ```
|
||||
#![allow(clippy::module_name_repetitions, clippy::missing_panics_doc)]
|
||||
#![allow(clippy::pub_underscore_fields)]
|
||||
#![allow(
|
||||
clippy::module_name_repetitions,
|
||||
clippy::missing_panics_doc,
|
||||
clippy::pub_underscore_fields,
|
||||
clippy::mixed_attributes_style
|
||||
)]
|
||||
|
||||
pub mod filter;
|
||||
pub mod tracing;
|
||||
|
||||
|
@ -8,7 +8,7 @@ use which::which;
|
||||
|
||||
const QEMU_URL: &str = "https://github.com/AFLplusplus/qemu-libafl-bridge";
|
||||
const QEMU_DIRNAME: &str = "qemu-libafl-bridge";
|
||||
const QEMU_REVISION: &str = "75d15d54f4417a4766d2dcb493982d9df0e8eac4";
|
||||
const QEMU_REVISION: &str = "f282d6aef5e28421255293ebbb52d835281f2730";
|
||||
|
||||
pub struct BuildResult {
|
||||
pub qemu_path: PathBuf,
|
||||
|
@ -14,7 +14,8 @@
|
||||
clippy::missing_panics_doc,
|
||||
clippy::missing_docs_in_private_items,
|
||||
clippy::module_name_repetitions,
|
||||
clippy::pub_underscore_fields
|
||||
clippy::pub_underscore_fields,
|
||||
clippy::mixed_attributes_style
|
||||
)]
|
||||
#![cfg_attr(not(test), warn(
|
||||
missing_debug_implementations,
|
||||
|
Loading…
x
Reference in New Issue
Block a user