#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(__unstable_doc, feature(doc_auto_cfg, doc_notable_trait))]
extern crate alloc;
pub use compact_str::{
CompactString as MiniStr, ToCompactString, format_compact as fmt_compact,
};
mod phf_tuple_key;
pub use phf_tuple_key::PhfTupleKey;
pub mod phf_triple_key;
pub use phf_triple_key::PhfTripleKey;
#[cfg(feature = "smallvec")]
pub mod small_list;
#[cfg(feature = "type-aliases")]
mod aliases;
#[cfg(feature = "type-aliases")]
pub use aliases::type_aliases;
#[cfg(feature = "type-aliases")]
pub use glossa_dsl;
#[cfg(feature = "type-aliases")]
pub use lang_id;
#[cfg(feature = "phf")]
pub use phf;
#[cfg(feature = "type-aliases")]
pub use tap;
#[cfg(feature = "phf")]
pub type PhfL10nOrderedMap = phf::OrderedMap<PhfTupleKey<'static>, &'static str>;
#[cfg(feature = "phf")]
pub type PhfL10nAllInOneMap = phf::OrderedMap<PhfTripleKey<'static>, &'static str>;
#[cfg(feature = "phf")]
pub type PhfStrMap = phf::OrderedMap<&'static str, &'static str>;
#[cfg(feature = "decode")]
pub mod decode;
#[cfg(all(feature = "decode", feature = "std"))]
pub mod load_bincode;
#[cfg(feature = "std")]
pub mod display;