[package]
edition = "2024"
name = "formualizer-workbook"
version = "0.4.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ergonomic workbook API over the Formualizer engine (sheets, loaders, staging, undo/redo)"
homepage = "https://github.com/psu3d0/formualizer"
documentation = "https://docs.rs/formualizer"
readme = "README.md"
keywords = [
"spreadsheet",
"excel",
"workbook",
"xlsx",
"undo-redo",
]
categories = [
"data-structures",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/psu3d0/formualizer"
resolver = "2"
[features]
calamine = [
"dep:calamine",
"dep:zip",
]
calamine_integration = ["calamine"]
compression = ["dep:zstd"]
csv = ["dep:csv"]
default = [
"json",
"csv",
]
import_range = ["io_builtins"]
io_builtins = []
json = [
"dep:serde_json",
"formualizer-common/serde",
]
mmap = ["dep:memmap2"]
tracing = ["dep:tracing"]
umya = [
"dep:umya-spreadsheet",
"dep:zip",
]
umya_integration = ["umya"]
wasm_plugins = [
"dep:wasmparser",
"dep:serde_json",
"formualizer-common/serde",
]
wasm_runtime_wasmtime = [
"wasm_plugins",
"dep:wasmtime",
]
webservice = [
"io_builtins",
"dep:reqwest",
]
[lib]
name = "formualizer_workbook"
path = "src/lib.rs"
[[example]]
name = "custom_function_registration"
path = "examples/custom_function_registration.rs"
[[example]]
name = "wasm_plugin_attach_dir"
path = "examples/wasm_plugin_attach_dir.rs"
[[example]]
name = "wasm_plugin_inspect_attach_bind"
path = "examples/wasm_plugin_inspect_attach_bind.rs"
[[example]]
name = "wasm_plugin_inspect_catalog"
path = "examples/wasm_plugin_inspect_catalog.rs"
[[test]]
name = "calamine"
path = "tests/calamine/mod.rs"
required-features = ["calamine"]
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "compressed_range_demand"
path = "tests/compressed_range_demand.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "csv_backend"
path = "tests/csv_backend.rs"
[[test]]
name = "custom_functions"
path = "tests/custom_functions.rs"
[[test]]
name = "json_backend"
path = "tests/json_backend.rs"
[[test]]
name = "json_date_system_engine"
path = "tests/json_date_system_engine.rs"
[[test]]
name = "named_range_engine"
path = "tests/named_range_engine.rs"
[[test]]
name = "session_scaffold"
path = "tests/session_scaffold.rs"
[[test]]
name = "spill_reads"
path = "tests/spill_reads.rs"
[[test]]
name = "test_loader"
path = "tests/test_loader.rs"
[[test]]
name = "test_traits"
path = "tests/test_traits.rs"
[[test]]
name = "transactions"
path = "tests/transactions.rs"
[[test]]
name = "umya"
path = "tests/umya/mod.rs"
required-features = ["umya"]
[[test]]
name = "wasm_manifest_conformance"
path = "tests/wasm_manifest_conformance.rs"
[[test]]
name = "wasm_module_registry"
path = "tests/wasm_module_registry.rs"
[[test]]
name = "wasm_plugin_seam"
path = "tests/wasm_plugin_seam.rs"
[[test]]
name = "workbook_engine"
path = "tests/workbook_engine.rs"
[[test]]
name = "workbook_named_ranges"
path = "tests/workbook_named_ranges.rs"
[dependencies.calamine]
version = "0.24"
optional = true
[dependencies.chrono]
version = "0.4.41"
[dependencies.csv]
version = "1.3.1"
optional = true
[dependencies.formualizer-common]
version = "1.1.1"
[dependencies.formualizer-eval]
version = "0.4.3"
[dependencies.formualizer-parse]
version = "1.1.1"
[dependencies.memmap2]
version = "0.9"
optional = true
[dependencies.once_cell]
version = "1.21.3"
[dependencies.parking_lot]
version = "0.12"
[dependencies.reqwest]
version = "0.11"
optional = true
[dependencies.rustc-hash]
version = "1.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.142"
optional = true
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tracing]
version = "0.1"
optional = true
[dependencies.umya-spreadsheet]
version = "=2.3.2"
optional = true
package = "umya-spreadsheet"
[dependencies.wasmparser]
version = "0.240"
optional = true
[dependencies.zip]
version = "0.6.6"
features = ["deflate"]
optional = true
default-features = false
[dependencies.zstd]
version = "0.13"
optional = true
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.umya-spreadsheet]
version = "=2.3.2"
[dev-dependencies.wasm-encoder]
version = "0.240"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.wasmtime]
version = "41.0.3"
optional = true