fp-macros 0.7.1

Procedural macros for generating and working with Higher-Kinded Type (HKT) traits in the fp-library crate.
Documentation
//! Core infrastructure for fp-macros.
//!
//! This module provides centralized utilities and infrastructure used across
//! the macro crate, including error handling, configuration management,
//! and result type helpers.

pub mod config;
pub mod constants;
pub mod error_handling;
pub mod warning_emitter;

// Re-export commonly used types
pub use {
	error_handling::{
		Error,
		Result,
		ToCompileError,
	},
	warning_emitter::WarningEmitter,
};