Extract data from dbf files and deserialize with serde.
```rust use std::collections::BTreeMap;
use serde::{Deserialize};
use dbf_dextractor::{Value, Date, Timestamp};
const DBFFILE: &str = "/path/to/data.dbf"; const DBTFILE: &str = "/path/to/data.dbt";
struct Record {
boolean: bool,
date: Date,
timestamp: Timestamp,
decimal: f64,
id: u32,
name: String,
note: Option
for record in dbfdextractor::read(DBFFILE, Some(DBT_FILE))? { let record: Record = record?; println!("{:#?}", record); }
let records: Vec
println!("{:#?}", records); ```