#![allow(clippy::disallowed_types, clippy::disallowed_methods)]
mod allocator;
mod boxed;
mod clone_in;
mod vec;
pub mod config;
#[cfg(not(target_arch = "wasm32"))]
pub mod corsa_resolver;
pub mod dialect;
pub mod directive;
pub mod dom_tag_config;
pub mod flags;
pub mod general;
pub mod hash;
pub mod i18n;
mod i18n_supplemental;
mod i18n_supplemental_extra;
mod i18n_supplemental_extra2;
pub mod line_index;
pub mod lsp;
pub mod path;
pub mod profiler;
pub mod source_range;
pub mod string_builder;
pub mod telegraph;
pub use allocator::Allocator;
pub use boxed::Box;
pub use clone_in::CloneIn;
pub use vec::Vec;
pub use bumpalo::Bump;
pub use bumpalo::collections::String as BumpString;
pub use bumpalo::collections::Vec as BumpVec;
pub use compact_str::CompactString;
pub use compact_str::CompactString as String;
pub use compact_str::ToCompactString;
pub use smallvec::{SmallVec, smallvec};
pub use bitflags::bitflags;
pub use rustc_hash::{FxHashMap, FxHashSet};
pub use phf::{Map as PhfMap, Set as PhfSet, phf_map, phf_set};
pub use dom_tag_config::*;
pub use flags::*;
pub use general::*;