bdb 0.0.1

Efficient APIs to parse from and export to file formats commonly used in biology, for both proteomics and genetics workflows.
Documentation
//! Shared utilities.

// Don't export the modules publicly, these are implementation details
// We just need the high-level functionality made available.
#[macro_use]
mod macros;

#[macro_use]
mod iterator;

#[macro_use]
mod re;

mod alias;
mod error;
mod fmt;
mod writer;

#[cfg(feature = "xml")]
mod xml;

pub use self::alias::{BufferType, ErrorType, ResultType};
pub use self::error::{Error, ErrorKind};
pub use self::fmt::*;
pub use self::iterator::*;
pub use self::re::*;
pub use self::writer::TextWriterState;

#[cfg(feature = "xml")]
pub use self::xml::{XmlReader, XmlWriter};