//! Utility modules for go-brrr.
//!
//! This module provides common utilities used throughout the codebase:
//!
//! - [`path`]: Path manipulation (normalization, relative paths, project root detection)
//! - [`ignore`]: .brrrignore and .gitignore pattern matching
//! - [`query_error`]: Tree-sitter query error formatting with rich context
//! - [`simd`]: SIMD-accelerated byte searching (wraps memchr)
//!
//! Note: Token counting is provided by the `semantic` module via `go_brrr::count_tokens()`.
// Re-export commonly used items for convenience (may be used externally)
pub use ;
pub use format_query_error;
pub use ;