//! GBNF grammar-constrained sampling.
//!
//! This module provides:
//! - [`Grammar`] — a parsed GBNF grammar.
//! - [`GrammarState`] — stateful parse position, advanced token-by-token.
//! - [`GrammarError`] — error type for parse and state-machine failures.
//! - [`apply_grammar_mask`] — zero out logits for tokens disallowed by the
//! current grammar state.
//! - [`JsonSchemaCompiler`] — compile a JSON Schema (subset) to a [`Grammar`].
pub use ;
pub use JsonSchemaCompiler;
pub use ;
pub use ;