[package]
edition = "2024"
name = "impass"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simply way to handle fatal errors in an ergonomic way!"
readme = "README.md"
keywords = [
"error",
"error-handling",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/LunaticWyrm467/impass"
[lib]
name = "impass"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "main"
path = "tests/main.rs"
[dependencies.anyhow]
version = "1.0"
features = ["backtrace"]
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "1.0"
features = [
"parsing",
"full",
"extra-traits",
"printing",
]
[dependencies.thiserror]
version = "1.0"