speechmatics 0.4.0

An async rust SDK for the Speechmatics API
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! This is a crate to help you easily connect to the Speechmatics API (on-prem and SaaS) using the best programming language in the world!

#![warn(missing_docs)]

#[macro_use]
extern crate serde;

#[cfg(feature = "batch")]
pub mod batch;
#[cfg(feature = "realtime")]
pub mod realtime;