bistun-lms 1.0.2

A thread-safe capability engine for resolving BCP 47 language tags into actionable rendering and parsing properties (directionality, morphology, segmentation). Features a wait-free, lock-free memory pool (ArcSwap) enabling zero-downtime registry hot-swaps for high-throughput NLP and UI pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Bistun Linguistic Metadata Service (LMS)
// Copyright (C) 2026  Francis Xavier Wazeter IV

//! # Registry Data Shim
//! Ref: [011-LMS-DTO], [010-LMS-MEM]
//! Location: `crates/bistun-lms/src/data/store.rs`
//!
//! **Why**: This module acts as a bridge between the engine and the foundation.
//! It re-exports the authoritative models from `bistun-core` to ensure type consistency
//! without requiring a massive refactor of internal engine imports.

// [FIX]: Redirect all requests for these types to the centralized DNA foundation
pub use bistun_core::{LocaleProfile, RegistryMetadata, RegistryStore};