henri2h 0aba2c4520
Add support for Unicorn engine (#1054)
* feat: unicorn support

* feat: update

* fix: remove unused files

* fix: clean

* fix: remove undeeded parameters

* fix: typo

* moved to justfile

* use log::debug!

* fix cargo and created justfile

* feat: add CI

* add runs on

* fix: CI

* fix: CI

* fix: don't use fork executor

* not needed anymore

* fix: CI

* fix: CI

* remove extra space
2025-02-15 04:15:16 +01:00

21 lines
474 B
TOML

[package]
name = "unicorn"
version = "0.1.0"
edition = "2021"
[features]
# Enable a code hook which log the program counter at each executed instruction
default = []
code_hook = []
mem_hook = []
[dependencies]
libafl = { path = "../../../libafl/" }
libafl_bolts = { path = "../../../libafl_bolts/" }
libafl_targets = { path = "../../../libafl_targets" }
libafl_unicorn = { path = "../../../libafl_unicorn/" }
unicorn-engine = "2.1.2"
log = "0.4.25"
env_logger = "0.11.6"