[package]
name = "re_crash_handler"
authors.workspace = true
description = "Detect panics and signals, logging them and optionally sending them to analytics."
edition.workspace = true
homepage.workspace = true
include.workspace = true
license.workspace = true
publish = true
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true
[features]
default = ["analytics"]
analytics = ["dep:re_analytics"]
[dependencies]
re_build_info.workspace = true
econtext.workspace = true
itertools.workspace = true
parking_lot.workspace = true
re_analytics = { workspace = true, optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
backtrace.workspace = true
[target.'cfg(not(any(target_arch = "wasm32", target_os = "windows")))'.dependencies]
libc.workspace = true