1 2 3 4 5 6 7 8 9 10
//! Backend implementations of [`crate::StreamingAsr`]. //! //! Each backend lives behind its own Cargo feature so dependants can //! pull in only what they ship. #[cfg(feature = "mock")] pub mod mock; #[cfg(feature = "sherpa-onnx")] pub mod sherpa_onnx;