[package] name = "dbg_breakpoint" version = "0.1.1" edition = "2021" authors = ["kromych <kromych@users.noreply.github.com>"] description = """ Set breakpoints with the `breakpoint!()` macro on many target architectures and popular OSes like FreeBSD, macOS, iOS, Linux distro's, Windows without using the nightly toolchain. Break into the debugger with an easy `breakpoint_if_debugging()` call, too! """ documentation = "https://github.com/kromych/dbg_breakpoint" homepage = "https://github.com/kromych/dbg_breakpoint" repository = "https://github.com/kromych/dbg_breakpoint" keywords = ["breakpoint", "reverse-engineering", "debugging", "diagnostics"] categories = ["command-line-utilities", "development-tools"] license = "Unlicense OR MIT" readme = "README.md" [lib] path = "src/lib/lib.rs" [[bin]] name = "runme" path = "src/bin/runme.rs" [target.'cfg(any(target_vendor = "apple", target_os = "freebsd"))'.dependencies] libc = "0.2"