cranberry 0.1.0

A versatile Rust library for Russian Cyrillic transliteration
Documentation
1
2
3
4
5
6
7
use std::collections::HashMap;

pub type Cyrillic = char;
pub type Latin = String;
pub type LatinStr = &'static str;

pub type Alphabet = HashMap<Cyrillic, LatinStr>;