feat: add czv, czv-wasm, and czv-python (init release)

This commit is contained in:
rzmk 2024-06-19 22:37:33 -04:00
commit 9799ab694b
No known key found for this signature in database
40 changed files with 70383 additions and 0 deletions

17
czv-wasm/Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "czv-wasm"
version = "0.0.0"
authors = ["Mueez Khan"]
description = "WASM library for performing CSV-related functions for data engineering and analysis."
repository = "https://github.com/rzmk/czv"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
anyhow = "1.0.86"
csv = "1.3.0"
thiserror = "1.0.61"
wasm-bindgen = { version = "0.2" }
wasm-bindgen-test = { version = "0.3.42" }