5 releases
Uses old Rust 2015
0.1.2 | Mar 8, 2020 |
---|---|
0.1.1 | Apr 15, 2018 |
0.1.0 | Apr 13, 2018 |
0.0.2 | Apr 13, 2018 |
0.0.1 | Apr 13, 2018 |
#156 in Geospatial
21 downloads per month
Used in idcard-cn
2.5MB
81K
SLoC
GB2260.rs
The Rust implementation for looking up Chinese administrative divisions.
Installation
Add it to your Cargo.toml
:
[dependencies]
gb2260 = "0.1"
Add extern crate gb2260
to your crate root and your're good to go!
Example
extern crate gb2260;
use gb2260::Division;
fn main() {
let division = Division::get("110000").unwrap();
assert_eq!(division.code, "110000");
assert_eq!(division.name, "北京市");
assert!(division.is_province());
assert!(!division.is_prefecture());
assert!(!division.is_county());
}
License
This work is released under the MIT license. A copy of the license is provided in the LICENSE file.