mule

Crates.iomule
lib.rsmule
version0.5.0
sourcesrc
created_at2021-04-04 18:03:37.570912
updated_at2021-04-25 14:30:40.68915
descriptionStrong-headed (yet flexible) parser of columnar datasets from CSV, TSV and other delimiter-separated datasets
homepage
repositoryhttps://github.com/amrhassan/mule-rs
max_upload_size
id378890
size95,854
crates.io (github:sio4-crates-io:crates-io)

documentation

README

mule

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

Crates.io Documentation Crates.io

Usage

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.

Commit count: 0

cargo fmt