1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! libtectonic is a financial data storage library
#![deny(missing_docs)]

extern crate libc;
extern crate csv;
extern crate indexmap;
extern crate serde;
extern crate serde_json;
#[macro_use]
extern crate serde_derive;
extern crate uuid;
extern crate byteorder;
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate log;

/// functions for histogram, event analytics
pub mod postprocessing;
/// data structures that describe data storage
pub mod storage;
/// helper functions
pub mod utils;
/// DTF(Dense Tick Format) implmentation
pub mod dtf;