czv/czv-wasm/Cargo.toml

20 lines
523 B
TOML

[package]
name = "czv-wasm"
version = "0.0.1"
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"
serde = { version = "1.0.203", features = ["derive"] }
serde-wasm-bindgen = "0.6.5"
thiserror = "1.0.61"
tsify-next = "0.5.3"
wasm-bindgen = { version = "0.2" }
wasm-bindgen-test = { version = "0.3.42" }