├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── country_lookup.rs ├── src ├── countries.rs └── lib.rs └── tests └── integration.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodutra/country-emoji/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodutra/country-emoji/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodutra/country-emoji/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodutra/country-emoji/HEAD/README.md -------------------------------------------------------------------------------- /benches/country_lookup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodutra/country-emoji/HEAD/benches/country_lookup.rs -------------------------------------------------------------------------------- /src/countries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodutra/country-emoji/HEAD/src/countries.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodutra/country-emoji/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leodutra/country-emoji/HEAD/tests/integration.rs --------------------------------------------------------------------------------