[package]
edition = "2021"
name = "fishhook"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library that enables dynamically rebinding symbols in Mach-O binaries at runtime"
homepage = "https://github.com/blkmlk/fishhook-rs"
readme = "README.md"
keywords = [
"fishhook",
"dylib",
"macos",
"mach-o",
"binding",
]
categories = [
"os::macos-apis",
"os",
]
license = "MIT"
repository = "https://github.com/blkmlk/fishhook-rs"
[lib]
name = "fishhook"
path = "src/lib.rs"
[dependencies]
[target.'cfg(target_os = "linux")'.dependencies.elf]
version = "0.8"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "macos")'.dependencies.goblin]
version = "0.10.0"
[target.'cfg(target_os = "macos")'.dependencies.mach2]
version = "0.4.2"