[package] name = "qemu_systemmode" version = "0.13.0" authors = ["Andrea Fioraldi ", "Dominik Maier "] edition = "2021" [features] default = ["std", "classic"] std = [] classic = [] # The classic way to interact with LibAFL QEMU, with direct calls to QEMU's functions breakpoint = [] # Uses the command system, with breakpoints sync_exit = [] # Uses the command system, with sync exit. shared = ["libafl_qemu/shared"] [profile.release] incremental = true debug = true lto = "fat" codegen-units = 1 [dependencies] libafl = { path = "../../libafl/" } libafl_bolts = { path = "../../libafl_bolts/" } libafl_qemu = { path = "../../libafl_qemu/", features = ["arm", "systemmode"] } libafl_qemu_sys = { path = "../../libafl_qemu/libafl_qemu_sys", features = ["arm", "systemmode"] } env_logger = "*" [build-dependencies] libafl_qemu_build = { path = "../../libafl_qemu/libafl_qemu_build" }