1
2
3
4
5
6
7
8
9
//! rustplot is a simple GUI based plotting library for Rust.
//!
//! rustplot provides a data parsing module to for extracting data from CSV files
//! and uses gtk+ for creation of graphical user interfaces for displaying charts.


pub mod data_parser;

pub mod chart_builder;