
* Rust 2024 edition * gen = generalized * Fixes * more fix * More fix * even more fix * fix libfuzzer * ignore clippy lint * even more * fix docs? * more? * More pub more better * win * docs * more * More * doc stuff? * counter_maps->counters_maps * libafl qemu fixes for rust 2024 * fix? * fmt * unsafe lint * final fixes * fmt * working? * not working * unused import * win? * update libafl qemu hash * fmt * fix * unused imports * fix * fix * more foix * less edition * fix --------- Co-authored-by: Romain Malmain <romain.malmain@pm.me>
34 lines
770 B
TOML
34 lines
770 B
TOML
[package]
|
|
authors = [
|
|
"Andrea Fioraldi <andreafioraldi@gmail.com>",
|
|
"Dominik Maier <domenukk@gmail.com>",
|
|
]
|
|
name = "deexit"
|
|
version.workspace = true
|
|
edition = "2024"
|
|
description = "DeExit: Replace exits with aborts to catch them during in-process fuzzing"
|
|
documentation = "https://docs.rs/libafl"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
readme = "../../README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing", "libafl", "ldpreload"]
|
|
categories = [
|
|
"development-tools::testing",
|
|
"emulators",
|
|
"embedded",
|
|
"os",
|
|
"no-std",
|
|
]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = { workspace = true }
|
|
|
|
[lib]
|
|
name = "deexit"
|
|
crate-type = ["cdylib"]
|
|
|
|
[lints]
|
|
workspace = true
|