[package]
edition = "2024"
name = "datacell"
version = "0.1.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A powerful CLI tool and library for spreadsheet manipulation with pandas-style operations.
Supports CSV, Excel (XLSX, XLS, ODS), Parquet, and Avro formats with formula evaluation,
data transformation, and comprehensive analytics capabilities.
"""
homepage = "https://github.com/yingkitw/datacell"
documentation = "https://docs.rs/datacell"
readme = "README.md"
keywords = [
"csv",
"excel",
"spreadsheet",
"parquet",
"cli",
]
categories = [
"command-line-utilities",
"encoding",
"data-structures",
"parsing",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/yingkitw/datacell"
[features]
api = [
"axum",
"tower",
"tower-http",
]
default = []
[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_advanced_excel"
path = "tests/test_advanced_excel.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_encryption"
path = "tests/test_encryption.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_google_sheets"
path = "tests/test_google_sheets.rs"
[[test]]
name = "test_handler_registry"
path = "tests/test_handler_registry.rs"
[[test]]
name = "test_operations"
path = "tests/test_operations.rs"
[[test]]
name = "test_plugins"
path = "tests/test_plugins.rs"
[[test]]
name = "test_streaming"
path = "tests/test_streaming.rs"
[[test]]
name = "test_traits"
path = "tests/test_traits.rs"
[[test]]
name = "test_xlsx_validation"
path = "tests/test_xlsx_validation.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.anyrepair]
version = "0.2.1"
[dependencies.apache-avro]
version = "0.17"
[dependencies.arrow-array]
version = "54"
[dependencies.arrow-schema]
version = "54"
[dependencies.axum]
version = "0.7"
optional = true
[dependencies.calamine]
version = "0.26"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5.65"
[dependencies.csv]
version = "1.3"
[dependencies.dirs]
version = "5.0"
[dependencies.glob]
version = "0.3.3"
[dependencies.parquet]
version = "54"
features = ["arrow"]
[dependencies.rayon]
version = "1.10"
[dependencies.regex]
version = "1.10"
[dependencies.rmcp]
version = "0.14"
features = [
"server",
"transport-io",
"macros",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.12"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"net",
]
[dependencies.toml]
version = "0.8"
[dependencies.tower]
version = "0.4"
optional = true
[dependencies.tower-http]
version = "0.5"
features = [
"cors",
"limit",
]
optional = true
[dependencies.zip]
version = "2.2"
[dev-dependencies.tempfile]
version = "3.12"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
[profile.release.build-override]
opt-level = 3