shlesha 0.5.7

High-performance extensible transliteration library with hub-and-spoke architecture
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod core;
pub mod hub;
// Profiler uses std::time which is not available in WASM
#[cfg(not(target_arch = "wasm32"))]
pub mod profiler;
pub mod registry;
pub mod runtime;
pub mod schema;
pub mod script_converter;

// Re-export module todo queue types for cross-module communication
pub use self::core::{ModuleTodoQueue, TodoItem, TodoPriority, TodoResponse};