40 lines
1.6 KiB
TOML
40 lines
1.6 KiB
TOML
[package]
|
|
name = "libafl_frida"
|
|
version = "0.2.0"
|
|
authors = ["s1341 <github@shmarya.net>"]
|
|
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 = "2018"
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.0", features = ["parallel"] }
|
|
|
|
[dependencies]
|
|
libafl = { path = "../libafl", version = "0.2.0", features = ["std", "libafl_derive"] }
|
|
libafl_targets = { path = "../libafl_targets", version = "0.1.0" }
|
|
nix = "0.20.0"
|
|
libc = "0.2.92"
|
|
hashbrown = "0.11"
|
|
libloading = "0.7.0"
|
|
rangemap = "0.1.10"
|
|
frida-gum = { version = "0.4.0", git = "https://github.com/s1341/frida-rust", features = [ "auto-download", "backtrace", "event-sink", "invocation-listener"] }
|
|
frida-gum-sys = { version = "0.2.4", git = "https://github.com/s1341/frida-rust", features = [ "auto-download", "event-sink", "invocation-listener"] }
|
|
#frida-gum = { version = "0.4.0", path = "../../frida-rust/frida-gum", features = [ "auto-download", "backtrace", "event-sink", "invocation-listener"] }
|
|
#frida-gum-sys = { version = "0.2.4", path = "../../frida-rust/frida-gum-sys", features = [ "auto-download", "event-sink", "invocation-listener"] }
|
|
regex = "1.4"
|
|
dynasmrt = "1.0.1"
|
|
capstone = "0.8.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"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
gothook = { version = "0.1" }
|