datacell 0.1.2

A CLI tool for reading, writing, converting XLS and CSV files with formula support
Documentation
[[bin]]
name = "datacell"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.apache-avro]
version = "0.17"

[dependencies.arrow]
version = "54"

[dependencies.calamine]
version = "0.26"

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.csv]
version = "1.3"

[dependencies.dirs]
version = "5.0"

[dependencies.parquet]
features = ["arrow"]
version = "54"

[dependencies.regex]
version = "1.10"

[dependencies.rmcp]
features = ["server", "transport-io", "macros"]
version = "0.12"

[dependencies.rust_xlsxwriter]
version = "0.80"

[dependencies.schemars]
version = "1.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["full"]
version = "1"

[dependencies.toml]
version = "0.8"

[lib]
name = "datacell"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "encoding"]
description = "A CLI tool for reading, writing, converting XLS and CSV files with formula support"
edition = "2024"
keywords = ["csv", "excel", "spreadsheet", "data", "cli"]
license = "Apache-2.0"
name = "datacell"
readme = "README.md"
repository = "https://github.com/yingkitw/datacell"
version = "0.1.2"

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

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

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

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

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

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

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

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

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

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

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