[package]
edition = "2021"
name = "cell-sheet-core"
version = "0.5.0"
authors = ["Garrit Franke"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core spreadsheet engine with formulas, dependency tracking, and file I/O"
homepage = "https://github.com/garritfra/cell"
readme = "README.md"
license = "MIT"
repository = "https://github.com/garritfra/cell"
[lib]
name = "cell_sheet_core"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "core"
path = "benches/core.rs"
harness = false
[[bench]]
name = "recalc"
path = "benches/recalc.rs"
harness = false
[dependencies.csv]
version = "1.3"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.pretty_assertions]
version = "1"