panic-no-std 0.2.0

Panic handler for `no_std` apps.
Documentation
[package]
edition = "2021"
name = "panic-no-std"
version = "0.2.0"
rust-version = "1.91"
authors = ["warlock <internalmike@gmail.com>"]
description = "Panic handler for `no_std` apps."
readme = "README.md"
documentation = "https://docs.rs/panic-no-std/"
keywords = ["panic", "no_std", "panic_handler", "windows", "linux"]
categories = ["os", "no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/A1-Triard/panic-no-std"

[lints.rust]
unexpected_cfgs = { level = "allow" }

[dependencies]
exit-no-std = "0.3.0"

[target.'cfg(dos)'.dependencies]
pc-ints = "0.4.0"

[target.'cfg(all(not(dos), not(windows)))'.dependencies]
libc = { version = "0.2.139", default-features = false }

[target.'cfg(all(not(dos), windows))'.dependencies]
winapi = { version = "0.3.9", features = ["fileapi", "handleapi", "processenv", "winbase"] }

[badges]
maintenance = { status = "passively-maintained" }