1
2
3
4
5
6
7
8
9
10
11
12
13
//! This library provides types to work with bibliographic records
//! encoded in (normalized) PICA+, the internal data format of the
//! [OCLC](https://www.oclc.org) cataloging system.

pub use error::Error;
pub use record::{ByteRecord, StringRecord};

mod error;
pub mod matcher;
mod parser;
pub mod prelude;
pub mod primitives;
mod record;