mule 0.3.0

Strong-headed (yet flexible) parser of columnar datasets from CSV, TSV or other delimiter-separated datasets
Documentation
# mule #
Strong-headed (yet flexible) parser of columnar datasets from CSV, TSV or other delimiter-separated datasets

[![Crates.io](https://img.shields.io/crates/v/mule)](https://crates.io/crates/mule)
[![Documentation](https://docs.rs/mule/badge.svg)](https://docs.rs/mule)
[![Crates.io](https://img.shields.io/crates/l/mule)](LICENSE)

# Usage #
```rust
use mule::{read_file, Result};

#[tokio::main]
pub async fn main() -> Result<()> {
    let file_path = "datasets/sales-10.csv";
    let dataset = read_file(file_path).await?;
    println!("Got dataset: {:#?}", dataset);
    Ok(())
}
```

Other examples are available in the [examples directory](https://github.com/amrhassan/mule-rs/tree/main/examples).