dbase_parser 0.1.0

A fast, efficient dbase DBF/DBT/FPT parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// #![feature(slicing_syntax)]
extern crate chrono;
extern crate byteorder;

pub mod header;
pub mod fields;

use std::io;
pub use fields::FieldValue;

pub fn open(path: &str) -> Result<header::Database, io::Error> {
    let file = std::fs::File::open(path)?;
    header::Database::parse(path, file)
}