bistun-lms 2.1.1

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
14
// Bistun Linguistic Metadata Service (LMS)
// Copyright (C) 2026  Francis Xavier Wazeter IV

//! # Resource Resolution Domain
//! Ref: [001-LMS-CORE], [002-LMS-DATA]
//! Location: `src/core/resource/mod.rs`
//!
//! **Why**: This module coordinates Phase 2.5 of the pipeline, translating abstract resource IDs into physical URIs.
//! **Impact**: Failure in this domain prevents consuming applications from downloading necessary binary data blobs (like ICU4X data).
//!
//! ### Glossary
//! * **Pointer Pattern**: Synthesizing a URL string for the client to resolve externally, rather than streaming heavy files through the microservice.

pub mod resolver;