easy-macros 1.1.3

Toolkit for building Rust procedural macros + generating debug info
Documentation
#![cfg_attr(docsrs, feature(doc_cfg))]

// Compile README.docify.md to README.md
#[cfg(feature = "_generate-readme")]
docify::compile_markdown!("README.docify.md", "README.md");

#[cfg(feature = "all-syntax-cases")]
pub use all_syntax_cases::*;

#[cfg(feature = "always-context")]
pub use always_context::*;

#[cfg(feature = "add-code")]
pub use add_code::*;

#[cfg(feature = "build")]
pub use always_context_build;

#[cfg(feature = "anyhow-result")]
/// Enables procedural macros to return `anyhow::Result<TokenStream>` for ergonomic error handling.
///
/// This attribute wraps proc-macro functions to automatically handle `anyhow::Result` return types,
/// converting errors into appropriate `compile_error!` tokens.
///
/// # Usage
///
/// ```rust,ignore
/// use anyhow::Context;
/// use proc_macro::TokenStream;
///
/// #[proc_macro]
/// #[anyhow_result]
/// pub fn my_macro(input: TokenStream) -> anyhow::Result<TokenStream> {
///     let parsed: syn::ItemStruct = syn::parse(input)
///         .context("Expected a struct definition")?;
///     
///     // Your macro logic here
///     Ok(quote! { /* generated code */ }.into())
/// }
/// ```
///
/// # Error Handling
///
/// When your function returns an `Err`, `anyhow_result` automatically converts it:
/// - **`#[proc_macro]` and `#[proc_macro_derive]`**: Returns `compile_error!` with the error message
/// - **`#[proc_macro_attribute]`**: Returns `compile_error!` followed by the original input item
///
/// # See Also
///
/// - [`anyhow`](https://docs.rs/anyhow/) - Error handling library
/// - [`syn`](https://docs.rs/syn/) - Rust code parsing  
/// - [`quote`](https://docs.rs/quote/) - Code generation
pub use anyhow_result::anyhow_result;

#[cfg(feature = "attributes")]
pub use attributes::{
    AttrWithUnknown, fields_get_attributes, fields_with_attributes, get_attributes, has_attributes,
};

// === Helper Function Exports ===

/// Helper utilities for building procedural macros
#[cfg(feature = "_helpers")]
pub use helpers::*;

#[cfg(test)]
mod macro_tests;

#[cfg(test)]
mod examples;