estring 0.3.0

A simple way to parse a string using type annotations
Documentation
//! This module will contain aggregate functions (Sum, Product, etc)
//!

mod product;
mod sum;

pub use product::*;
pub use sum::*;