[package]
name = "anglerkit"
version = "0.0.0"
description = "In-development function hooking/detouring library"
edition = "2021"
authors = ["William Tremblay <tremwil@users.noreply.github.com>"]
keywords = ["detour", "hooking", "modding", "hacking"]
categories = ["security", "no-std"]
license = "MIT"
repository = "https://github.com/tremwil/anglerkit"
[features]
default = [ "closure-ffi/bundled_jit_alloc" ]
no_std = ["closure-ffi/no_std"]
nightly = ["closure-ffi/unstable", "closure-ffi/tuple_trait"]
[dependencies]
closure-ffi = { version = "2.3.0", default-features = false }
clear-cache = "0.1.1"
region = "3.0.2"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
iced-x86 = "1.21"
[target.'cfg(any(target_arch = "aarch64", target_arch = "arm"))'.dependencies]
yaxpeax-arm = "0.3.1"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]