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
26
27
28
29
//! libtectonic is a financial data storage library
#![deny(missing_docs)]
#![feature(libc)]
#![feature(rustc_private)]

extern crate csv;
extern crate indexmap;
extern crate serde;
extern crate serde_json;
#[macro_use]
extern crate serde_derive;
extern crate time;
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;
/// Rust tectonicdb client
pub mod client;