dbf-dextractor

Extract data from dbf files and deserialize with serde.

Usage

```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";

[derive(Deserialize, Debug)]

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> = dbfdextractor::readvalues(DBFFILE, Some(DBTFILE))? .collect::>()?;

println!("{:#?}", records); ```