//! tdb_core is a financial data storage library
extern crate libc;
extern crate csv;
extern crate indexmap;
extern crate serde;
extern crate serde_json;
extern crate serde_derive;
extern crate uuid;
extern crate byteorder;
extern crate bitflags;
extern crate log;
extern crate lazy_static;
/// functions for histogram, event analytics
/// data structures that describe data storage
/// helper functions
/// DTF(Dense Tick Format) implmentation
/// Constant prefix during encoding/decoding raw insert command
pub const RAW_INSERT_PREFIX: &'static = b"ra";