[package]
edition = "2021"
name = "errorstack"
version = "0.0.1"
authors = ["jacktbeaumont"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A derive-based typed error system with first-class error stack building."
documentation = "https://docs.rs/errorstack"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/jacktbeaumont/errorstack"
[lib]
name = "errorstack"
path = "src/lib.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "derive"
path = "tests/derive.rs"
[[test]]
name = "report"
path = "tests/report.rs"
[dependencies.errorstack-derive]
version = "0.0.1"
[dev-dependencies.thiserror]
version = "2"
[dev-dependencies.trybuild]
version = "1"