dobby-rs-framework 0.1.3

Developer-friendly framework on top of dobby-rs core
Documentation

dobby-rs-framework

crates.io docs.rs License

Ergonomic hooking utilities built on top of dobby-rs.

Most users should depend on this crate (it pulls dobby-rs automatically).

Install

cargo add dobby-rs-framework

Highlights

  • StaticHook<T>: global hook handle + typed original()
  • TypedHookHandle<T> / ReplaceHandle<T>: typed handles for inline hooks/replacements
  • Symbols + aliases: resolve + alias registry + hook-by-symbol

Examples

Examples are in examples/:

  • logging.rs
  • static_hook_basic.rs
  • install_replace.rs
  • module_params.rs
  • symbols_aliases.rs
  • inline_hooks_builder.rs
  • inline_hooks_config.rs
  • macros.rs

Run one:

cargo run -p dobby-rs-framework --example static_hook_basic

Safety

Hook installation is unsafe. The detour must match the target signature/ABI.