[package]
edition = "2024"
name = "spreadsheet-kit"
version = "0.11.1"
authors = ["Frankie Colson"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core spreadsheet automation primitives — shared types, edit normalization, and session traits for agent-facing surfaces"
homepage = "https://github.com/PSU3D0/spreadsheet-mcp"
readme = "README.md"
keywords = [
"spreadsheet",
"xlsx",
"automation",
"agent",
"mcp",
]
categories = [
"data-structures",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/PSU3D0/spreadsheet-mcp"
resolver = "2"
[features]
default = ["recalc-formualizer"]
recalc = [
"async-trait",
"uuid",
"quick-xml",
"xxhash-rust",
"image",
"base64",
]
recalc-formualizer = [
"recalc",
"dep:formualizer",
]
recalc-libreoffice = ["recalc"]
[lib]
name = "spreadsheet_kit"
path = "src/lib.rs"
[[bin]]
name = "agent-spreadsheet"
path = "src/bin/agent-spreadsheet.rs"
required-features = ["recalc"]
[[bin]]
name = "asp"
path = "src/bin/asp.rs"
required-features = ["recalc"]
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[[test]]
name = "core_runtime_parity"
path = "tests/core_runtime_parity.rs"
[[test]]
name = "diff_engine"
path = "tests/diff_engine.rs"
[[test]]
name = "diff_structure"
path = "tests/diff_structure.rs"
[[test]]
name = "heuristic_scenarios"
path = "tests/heuristic_scenarios.rs"
[[test]]
name = "new_tools"
path = "tests/new_tools.rs"
[[test]]
name = "output_defaults"
path = "tests/output_defaults.rs"
[[test]]
name = "phase0_integration"
path = "tests/phase0_integration.rs"
[[test]]
name = "read_guardrails"
path = "tests/read_guardrails.rs"
[[test]]
name = "read_table_polish"
path = "tests/read_table_polish.rs"
[[test]]
name = "region_detection"
path = "tests/region_detection.rs"
[[test]]
name = "region_integration"
path = "tests/region_integration.rs"
[[test]]
name = "repository_readflow_parity"
path = "tests/repository_readflow_parity.rs"
[[test]]
name = "scenario_benchmark_harness"
path = "tests/scenario_benchmark_harness.rs"
[[test]]
name = "session_e2e"
path = "tests/session_e2e.rs"
[[test]]
name = "sheet_overview_truncation"
path = "tests/sheet_overview_truncation.rs"
[[test]]
name = "surface_matrix_drift_check"
path = "tests/surface_matrix_drift_check.rs"
[[test]]
name = "tools_integration"
path = "tests/tools_integration.rs"
[[test]]
name = "unit_conditional_format_helpers"
path = "tests/unit_conditional_format_helpers.rs"
[[test]]
name = "unit_edit_batch"
path = "tests/unit_edit_batch.rs"
[[test]]
name = "unit_filters"
path = "tests/unit_filters.rs"
[[test]]
name = "unit_formula_pattern"
path = "tests/unit_formula_pattern.rs"
[[test]]
name = "unit_grid_roundtrip"
path = "tests/unit_grid_roundtrip.rs"
[[test]]
name = "unit_layout_page"
path = "tests/unit_layout_page.rs"
[[test]]
name = "unit_replace_in_formulas"
path = "tests/unit_replace_in_formulas.rs"
[[test]]
name = "unit_repository_path"
path = "tests/unit_repository_path.rs"
[[test]]
name = "unit_repository_virtual"
path = "tests/unit_repository_virtual.rs"
[[test]]
name = "unit_security"
path = "tests/unit_security.rs"
[[test]]
name = "unit_utils"
path = "tests/unit_utils.rs"
[[test]]
name = "unit_workbook"
path = "tests/unit_workbook.rs"
[[test]]
name = "unit_workbook_style_summary"
path = "tests/unit_workbook_style_summary.rs"
[[test]]
name = "workbook_summary"
path = "tests/workbook_summary.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.base64]
version = "0.22"
optional = true
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.formualizer]
version = "0.5.1"
features = [
"eval",
"workbook",
"umya",
"sheetport",
"common",
]
optional = true
default-features = false
[dependencies.formualizer-parse]
version = "1.1.2"
[dependencies.globset]
version = "0.4"
[dependencies.image]
version = "0.25"
features = ["png"]
optional = true
default-features = false
[dependencies.indexmap]
version = "2.2"
[dependencies.lru]
version = "0.12"
[dependencies.once_cell]
version = "1.19"
[dependencies.ovba]
version = "0.7.1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.quick-xml]
version = "0.31"
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.regex]
version = "1.10"
[dependencies.schemars]
version = "1.0"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_with]
version = "3.8"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.smallvec]
version = "1.13"
[dependencies.strum]
version = "0.26"
features = ["derive"]
[dependencies.tempfile]
version = "3.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.37"
features = [
"macros",
"rt",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"env-filter",
]
[dependencies.umya-spreadsheet]
version = "2.3.2"
[dependencies.uuid]
version = "1.10"
features = [
"v4",
"js",
]
optional = true
[dependencies.walkdir]
version = "2.5"
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh64"]
optional = true
[dependencies.zip]
version = "0.6"
features = ["deflate"]
default-features = false
[dev-dependencies.assert_cmd]
version = "2.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1.37"
features = [
"rt-multi-thread",
"fs",
"signal",
"net",
"process",
]
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.3"
features = ["wasm_js"]
[target.'cfg(target_arch = "wasm32")'.dependencies.umya-spreadsheet]
version = "2.3.2"
features = ["js"]