1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#![crate_name = "voca_rs"]
#![cfg_attr(all(test, feature = "nightly"), feature(test))]
pub mod case;
pub mod chop;
pub mod count;
pub mod escape;
pub mod index;
pub mod manipulate;
pub mod query;
pub mod split;
pub mod strip;
pub mod utils;

extern crate unicode_segmentation;
extern crate unidecode;