4 releases

0.10.1 Jul 10, 2023
0.10.0 Mar 22, 2023
0.9.1 Nov 1, 2020
0.9.0 Oct 10, 2020

#30 in Procedural macros

Download history 161082/week @ 2024-11-16 151461/week @ 2024-11-23 168119/week @ 2024-11-30 156012/week @ 2024-12-07 158994/week @ 2024-12-14 83160/week @ 2024-12-21 97447/week @ 2024-12-28 167277/week @ 2025-01-04 201693/week @ 2025-01-11 178756/week @ 2025-01-18 198579/week @ 2025-01-25 228051/week @ 2025-02-01 239587/week @ 2025-02-08 240172/week @ 2025-02-15 267349/week @ 2025-02-22 284592/week @ 2025-03-01

1,073,365 downloads per month
Used in 1,466 crates (31 directly)

MIT/Apache

25KB
389 lines

proc-macro2-diagnostics   crates.io docs.rs

Diagnostics for stable and nightly proc-macros!

Usage

  1. Depend on the library in your proc-macro.
[dependencies]
proc_macro2_diagnostics = "0.10"
  1. Import SpanDiagnosticExt and use its methods on a proc_macro2::Span to create Diagnostics:
use syn::spanned::Spanned;
use proc_macro2::TokenStream;
use proc_macro2_diagnostics::{SpanDiagnosticExt, Diagnostic};

fn my_macro(input: TokenStream) -> Result<TokenStream, Diagnostic> {
    Err(input.span().error("there's a problem here..."))
}
  1. If there's an error, emit the diagnostic as tokens:
extern crate proc_macro;

pub fn real_macro(tokens: proc_macro::TokenStream) -> proc_macro::TokenStream {
    match my_macro(tokens.into()) {
        Ok(tokens) => tokens.into(),
        Err(diag) => diag.emit_as_expr_tokens().into()
    }
}

This does the right thing on nightly or stable.

Caveats

On stable, due to limitations, any top-level, non-error diagnostics are emitted as errors. This will abort compilation. To avoid this, you may want to cfg-gate emitting non-error diagnostics to nightly.

Colors

By default, error messages are colored on stable. To disable, disable default features:

[dependencies]
proc_macro2_diagnostics = { version = "0.10", default-features = false }

The compiler always colors diagnostics on nightly.

License

Licensed under either of the following, at your option:

Dependencies

~200–650KB
~15K SLoC