[package]
edition = "2021"
name = "bevy-panic-handler"
version = "7.0.0"
authors = ["Daniel Yoon"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Bevy plugin that creates a popup message and logs to error on panic"
readme = "README.md"
keywords = [
"bevy",
"panic",
"popup",
]
categories = ["game-engines"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Koranir/bevy-panic-handler"
[features]
default = ["log"]
log = ["bevy/bevy_log"]
[lib]
name = "bevy_panic_handler"
path = "src/lib.rs"
[[example]]
name = "custom_body"
path = "examples/custom_body.rs"
[[example]]
name = "custom_title"
path = "examples/custom_title.rs"
[[example]]
name = "popup"
path = "examples/popup.rs"
[dependencies.bevy]
version = "0.18.0"
default-features = false
[dependencies.native-dialog]
version = "0.9.4"