[package]
edition = "2024"
name = "exn"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A context-aware concrete Error type built on `core::error::Error`."
homepage = "https://github.com/fast/exn"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/fast/exn"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "exn"
path = "src/lib.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[dev-dependencies.insta]
version = "1.45.1"
[lints.clippy]
dbg_macro = "deny"
[lints.rust]
unknown_lints = "deny"
unused_must_use = "deny"