rfirebird 0.1.0

Provide a raw access to firebird database file
Documentation
//! Firebird raw reader

mod column;
mod data;
mod database;
mod error;
mod page;
mod record;
mod row;
mod table;

pub use column::{Column, ColumnType};
pub use database::Database;
pub use error::Error;
pub use row::{Row, Value};
pub use table::Table;

#[cfg(test)]
pub mod tests;