[package] name = "libafl_frida" version = "0.7.1" authors = ["s1341 "] description = "Frida backend library for LibAFL" documentation = "https://docs.rs/libafl_frida" repository = "https://github.com/AFLplusplus/LibAFL/" readme = "../README.md" license = "MIT OR Apache-2.0" keywords = ["fuzzing", "frida", "instrumentation"] edition = "2021" [features] default = [] cmplog = [] [build-dependencies] cc = { version = "1.0", features = ["parallel"] } [dependencies] libafl = { path = "../libafl", version = "0.7.1", features = ["std", "libafl_derive"] } libafl_targets = { path = "../libafl_targets", version = "0.7.1", features = ["std", "sancov_cmplog"] } nix = "0.23" libc = "0.2" hashbrown = "0.11" libloading = "0.7" rangemap = "0.1" frida-gum-sys = { version = "0.3", features = [ "auto-download", "event-sink", "invocation-listener"] } frida-gum = { version = "0.6.3", features = [ "auto-download", "event-sink", "invocation-listener"] } core_affinity = { version = "0.5", git = "https://github.com/s1341/core_affinity_rs", rev = "6648a7a" } regex = "1.4" dynasmrt = "1.2" capstone = "0.10.0" color-backtrace ={ version = "0.5", features = [ "resolve-modules" ] } termcolor = "1.1.2" serde = "1.0" backtrace = { version = "0.3.58", default-features = false, features = ["std", "serde"] } num-traits = "0.2.14" ahash = "0.7" paste = "1.0"