veloxx 0.2.2

Veloxx: A high-performance, lightweight Rust library for in-memory data processing and analytics. Featuring DataFrames, Series, CSV/JSON I/O, powerful transformations, aggregations, and statistical functions for efficient data science and engineering.
Documentation
[[bench]]
harness = false
name = "my_benchmark"
path = "benches/my_benchmark.rs"

[dependencies.bincode]
version = "2.0.1"

[dependencies.csv-core]
version = "0.1.10"

[dependencies.js-sys]
optional = true
version = "0.3"

[dependencies.microjson]
version = "0.1.6"

[dependencies.pyo3]
features = ["extension-module"]
optional = true
version = "0.21.2"

[dependencies.serde]
features = ["derive"]
version = "1.0.219"

[dependencies.thiserror]
version = "1.0"

[dependencies.wasm-bindgen]
optional = true
version = "0.2"

[dev-dependencies.criterion]
version = "0.5"

[[example]]
name = "basic_dataframe_operations"
path = "examples/basic_dataframe_operations.rs"

[[example]]
name = "dataframe_aggregation_and_stats"
path = "examples/dataframe_aggregation_and_stats.rs"

[[example]]
name = "dataframe_manipulation"
path = "examples/dataframe_manipulation.rs"

[features]
python = ["pyo3"]
wasm = ["wasm-bindgen", "js-sys"]

[lib]
crate-type = ["cdylib", "rlib"]
name = "veloxx"
path = "src/lib.rs"

[package]
authors = ["Wali Mohammad Kadri"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "science", "parsing", "api-bindings"]
description = "Veloxx: A high-performance, lightweight Rust library for in-memory data processing and analytics. Featuring DataFrames, Series, CSV/JSON I/O, powerful transformations, aggregations, and statistical functions for efficient data science and engineering."
edition = "2024"
homepage = "https://github.com/Conqxeror/veloxx"
keywords = ["dataframe", "data-processing", "analytics", "high-performance", "lightweight"]
license = "MIT"
name = "veloxx"
readme = "README.md"
repository = "https://github.com/Conqxeror/veloxx"
version = "0.2.2"

[[test]]
name = "dataframe_integration"
path = "tests/dataframe_integration.rs"