forked from kromych/dbg_breakpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 874 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "dbg_breakpoint"
version = "0.1.0"
edition = "2021"
authors = ["kromych <[email protected]>"]
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"
[dependencies]
libc = "0.2"