# `throw` panic hook
## Installation ```sh cargo add throw_panic_hook ``` ## Usage ```rs // lib.rs pub fn do_thing() { throw_panic_hook::set_once(); // ... rest of Rust code } pub fn do_other_thing() { throw_panic_hook::set_once(); // ... rest of Rust code } ```