shapefile-rs

Rust library to read & write shapefiles .dbf files supported via the dbase crate

```rust let mut reader = shapefile::Reader::from_path(filename).unwrap();

for result in reader.itershapesand_records() { let (shape, record) = result.unwrap(); println ! ("Shape: {}, records: ", shape); for (name, value) in record { println ! ("\t{}: {:?}, ", name, value); } println ! (); } ```