| Crates.io | veloxx |
| lib.rs | veloxx |
| version | 0.4.0 |
| created_at | 2025-07-01 10:26:14.240517+00 |
| updated_at | 2025-11-26 21:24:42.041975+00 |
| description | Veloxx: High-performance, lightweight Rust library for in-memory data processing and analytics. Features DataFrames, Series, advanced I/O (CSV, JSON, Parquet), machine learning (linear regression, K-means, logistic regression), time-series analysis, data visualization, parallel processing, and multi-platform bindings (Python, WebAssembly). Designed for minimal dependencies, optimal memory usage, and blazing speed - ideal for data science, analytics, and performance-critical applications. |
| homepage | |
| repository | https://github.com/Conqxeror/veloxx |
| max_upload_size | |
| id | 1733060 |
| size | 8,670,114 |

๐ v0.4.0 Released! Major performance overhaul with SIMD acceleration, Pivot, and Outer Join support.
Veloxx is a blazing-fast, ultra-lightweight data processing and analytics library in Rust, with seamless bindings for Python and WebAssembly. Built from the ground up for maximum performance, featuring advanced SIMD acceleration, memory optimization, and parallel processing that often outperforms industry leaders.
sum, mean, min, max) now 30-90x faster than scalar implementations.Left, Right, Inner, and Outer joins.PyDataFrame with pivot and outer_join support.[dependencies]
veloxx = "0.4.0"
use veloxx::dataframe::DataFrame;
use veloxx::series::Series;
let df = DataFrame::new_from_csv("data.csv")?;
let filtered = df.filter(&your_condition)?;
let grouped = df.group_by(vec!["category"]).agg(vec![("amount", "sum")])?;
import veloxx
df = veloxx.PyDataFrame({"name": veloxx.PySeries("name", ["Alice", "Bob"])})
filtered = df.filter(...)
pivoted = df.pivot(values="score", index=["name"], columns="subject", agg_fn="mean")
const veloxx = require("veloxx");
const df = new veloxx.WasmDataFrame({name: ["Alice", "Bob"]});
const filtered = df.filter(...);
Enable only what you need:
advanced_io โ Parquet, databases, asyncdata_quality โ Schema checks, anomaly detectionwindow_functions โ Window analyticsvisualization โ Chartingml โ Machine learningpython โ Python bindingswasm โ WebAssemblyRun ready-made examples:
cargo run --example basic_dataframe_operations
cargo run --example advanced_io --features advanced_io
# ... more in the examples/ folder
See CONTRIBUTING.md for guidelines. Please review our Code of Conduct.
MIT License. See LICENSE.