sdb_core/lib.rs
1//! tdb_core is a financial data storage library
2#![deny(missing_docs)]
3
4extern crate libc;
5extern crate csv;
6extern crate indexmap;
7extern crate serde;
8extern crate serde_json;
9#[macro_use]
10extern crate serde_derive;
11extern crate uuid;
12extern crate byteorder;
13#[macro_use]
14extern crate bitflags;
15extern crate log;
16#[macro_use]
17extern crate lazy_static;
18
19/// functions for histogram, event analytics
20pub mod postprocessing;
21/// data structures that describe data storage
22pub mod storage;
23/// helper functions
24pub mod utils;
25/// DTF(Dense Tick Format) implmentation
26pub mod dtf;
27
28/// Constant prefix during encoding/decoding raw insert command
29pub const RAW_INSERT_PREFIX: &'static [u8; 2] = b"ra";