textsynth 0.1.0

A (unofficial) wrapper for the TextSynth API, a text synthesization service.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]

pub mod core;
pub mod engine;
pub mod error;
pub mod prelude;
mod utils;

#[cfg(test)]
mod test_utils;

pub use crate::error::{Error, Result};
pub(crate) use error::UntaggedResult;