
* 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>
25 lines
657 B
TOML
25 lines
657 B
TOML
[package]
|
|
name = "forkserver_simple"
|
|
version = "0.14.1"
|
|
authors = ["tokatoka <tokazerkje@outlook.com>"]
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.18", features = ["derive"] }
|
|
env_logger = "0.11.5"
|
|
libafl = { path = "../../../libafl", features = ["std", "derive"] }
|
|
libafl_bolts = { path = "../../../libafl_bolts" }
|
|
log = { version = "0.4.22", features = ["release_max_level_info"] }
|
|
nix = { version = "0.29.0", features = ["signal"] }
|