-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (25 loc) · 940 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.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"