1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//! A library aiming at facilitating handling of large amounts of data.
//!
//! # ATTENTION
//! This is a work in progress is **not at all stable**. I am a student developing this as a hobby and to get a better
//! grasp of Rust.
//!
//! Use in production code at your own risk.

#![deny(missing_docs)]

#[macro_use]
extern crate quick_error;

pub mod error;
pub mod entry;
pub mod series;
pub mod dataframe;

pub use entry::{DataEntry, DataType};
pub use series::Series;
pub use error::{RaccoonError, RaccoonResult};