datacell 0.1.3

A CLI tool for reading, writing, converting XLS and CSV files with formula support
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

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

[[bin]]
name = "datacell"
path = "src/main.rs"

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

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

[[test]]
name = "test_cli_integration"
path = "tests/test_cli_integration.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"

[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]
version = "4.5"
features = ["derive"]

[dependencies.csv]
version = "1.3"

[dependencies.dirs]
version = "5.0"

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

[dependencies.regex]
version = "1.10"

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

[dependencies.rust_xlsxwriter]
version = "0.80"

[dependencies.schemars]
version = "1.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

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

[dependencies.toml]
version = "0.8"

[dev-dependencies.tempfile]
version = "3.12"