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
30
31
32
33
34
35
36
37
38
/*!
Dataframe library for Rust. Provides data structs and utilities for data aggregation, manipulation,
and viewing.
*/

#![warn(missing_docs)]

extern crate serde;
#[macro_use] extern crate serde_derive;
extern crate futures;
extern crate hyper;
extern crate tokio_core;
extern crate tokio_io;
extern crate native_tls;
extern crate hyper_tls;
extern crate csv;
extern crate encoding;
extern crate indexmap;
extern crate bit_vec;
#[macro_use] extern crate prettytable;
extern crate csv_sniffer;
extern crate tempfile;

pub mod source;
#[macro_use] pub mod store;
pub mod field;
pub mod error;
pub mod view;
pub use view::{SerializeAsVec, DataView};
pub mod join;
pub use join::{Join, JoinKind};
pub mod frame;
pub mod masked;
pub use masked::MaybeNa;
pub mod apply;
pub mod ops;

#[cfg(test)] pub(crate) mod test_utils;