wherr-macro 0.1.7

Enhance Rust errors with file and line details using the `#[wherr]` macro for clearer debugging.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "wherr-macro"
version = "0.1.7"
edition = "2021"
authors = ["Joel Jakobsson <github@compiler.org>"]
categories = ["rust-patterns"]
description = "Enhance Rust errors with file and line details using the `#[wherr]` macro for clearer debugging."
keywords = ["error", "error-handling"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joelonsql/wherr"

[lib]
proc-macro = true

[dependencies]
syn = { version = "2.0", features = ["full", "visit-mut", "parsing", "printing"] }
quote = "1.0"
proc-macro2 = { version = "1.0", features = ["span-locations"] }