backerror 0.1.1

Java style backtrace for Rust
Documentation
[package]
name = "backerror"
description = "Java style backtrace for Rust"
readme = "../README.md"

version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
categories.workspace = true
documentation.workspace = true
keywords.workspace = true
repository.workspace = true

include = ["**/*.rs", "Cargo.toml", "../README.md"]

[dependencies]
backerror-macros = { workspace = true }


[dev-dependencies]
thiserror = "2"

[features]
default = ["force_backtrace", "release_off"]

# only if environment variable RUST_BACKTRACE or RUST_LIB_BACKTRACE is set
backtrace = []

# force backtrace even if environment variable is not set
force_backtrace = []

# turn off attribute macro in release mode
release_off = ["backerror-macros/release_off"]