// SPDX-FileCopyrightText: 2026 Knitli Inc.
//
// SPDX-License-Identifier: LicenseRef-MarqueLicense-1.0
//! marque-core — format-agnostic text scanner and attribute parser for the marque rule engine.
//!
//! This crate is WASM-safe: no format dependencies, no I/O, operates on `&[u8]`.
//! The pipeline entry point is [`Scanner`], which produces [`Span`]s that the
//! [`Parser`] converts into [`IsmAttributes`].
//!
//! Core ISM types (`Span`, `IsmAttributes`, `TokenSet`, etc.) are defined in
//! `marque-ism` and re-exported here for backward compatibility.
pub use CoreError;
pub use ;
pub use Parser;
pub use Scanner;