├── .gitignore ├── Cargo.toml ├── LICENSE ├── Readme.md └── src ├── alpha2.rs ├── alpha3.rs ├── full.rs ├── lib.rs ├── numeric.rs └── sorted_arrays.rs /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | /target 3 | **/*.rs.bk 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifton/isocountry-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifton/isocountry-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifton/isocountry-rs/HEAD/Readme.md -------------------------------------------------------------------------------- /src/alpha2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifton/isocountry-rs/HEAD/src/alpha2.rs -------------------------------------------------------------------------------- /src/alpha3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifton/isocountry-rs/HEAD/src/alpha3.rs -------------------------------------------------------------------------------- /src/full.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifton/isocountry-rs/HEAD/src/full.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifton/isocountry-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/numeric.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifton/isocountry-rs/HEAD/src/numeric.rs -------------------------------------------------------------------------------- /src/sorted_arrays.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifton/isocountry-rs/HEAD/src/sorted_arrays.rs --------------------------------------------------------------------------------