chopper 0.0.1

Chopper is a simple streaming time series inspection and manipulation tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[macro_use]
extern crate lazy_static;

#[macro_use]
pub mod error;

pub mod chopper;
pub mod chopper_cli;
pub mod cli_app;
pub mod driver;
pub mod filter;
pub mod input;
pub mod source;
pub mod transport;
pub mod util;
pub mod write;