czv/czv-wasm/Cargo.toml
rzmk e84c5bec8b
refactor: use options object for WASM function args, improve docs
- Add relevant links to all READMEs and source code
- Resolve clippy lints

czv:

- Add more docs for top-level items
- Add suggestion to use builder methods instead of functions
- Disable slice and slice tests until operation is complete

czv-wasm:

- Use tsify_next for allowing objects as parameters
- Add nodejs example and instructions
2024-06-20 16:28:53 -04:00

20 lines
523 B
TOML

[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"
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" }