folia 0.0.6

High-performance library for handling the FoLiA XML format (Format for Linguistic Annotation)
Documentation
#![allow(unused_imports,dead_code)] //TODO: remove later!
extern crate quick_xml;

extern crate strum;
#[macro_use]
extern crate strum_macros;

extern crate serde;
#[macro_use]
extern crate serde_derive;

extern crate rand;
extern crate hex;
extern crate chrono;

pub mod common;
pub mod types;
pub mod error;
pub mod attrib;
pub mod element;
pub mod store;
pub mod elementstore;
pub mod metadata;
pub mod query;
pub mod select;
pub mod text;
pub mod document;
pub mod parser;
pub mod serialiser;
pub mod specification;


pub use common::*;
pub use types::*;
pub use error::*;
pub use document::*;
pub use element::*;
pub use store::*;
pub use elementstore::*;
pub use attrib::*;
pub use query::*;
pub use select::*;
pub use specification::*;
pub use text::*;
pub use metadata::*;