
* 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
21 lines
474 B
TOML
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"
|