├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── scripts └── generate_map.pl ├── src ├── data.rs └── lib.rs └── tests └── unidecode.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowdhurya/rust-unidecode/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowdhurya/rust-unidecode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowdhurya/rust-unidecode/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowdhurya/rust-unidecode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowdhurya/rust-unidecode/HEAD/README.md -------------------------------------------------------------------------------- /scripts/generate_map.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowdhurya/rust-unidecode/HEAD/scripts/generate_map.pl -------------------------------------------------------------------------------- /src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowdhurya/rust-unidecode/HEAD/src/data.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowdhurya/rust-unidecode/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/unidecode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowdhurya/rust-unidecode/HEAD/tests/unidecode.rs --------------------------------------------------------------------------------