[package]
edition = "2021"
name = "truecalc-core"
version = "0.6.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Spreadsheet formula engine — parser and evaluator for Excel-compatible formulas"
readme = "README.md"
license = "MIT"
repository = "https://github.com/truecalc/core"
[lib]
name = "truecalc_core"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "conformance_reporter"
path = "tests/conformance_reporter.rs"
[[test]]
name = "helpers"
path = "tests/helpers.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "property_array"
path = "tests/property_array.rs"
[[test]]
name = "property_conformance"
path = "tests/property_conformance.rs"
[[test]]
name = "property_database"
path = "tests/property_database.rs"
[[test]]
name = "property_date"
path = "tests/property_date.rs"
[[test]]
name = "property_engineering"
path = "tests/property_engineering.rs"
[[test]]
name = "property_error_propagation"
path = "tests/property_error_propagation.rs"
[[test]]
name = "property_filter"
path = "tests/property_filter.rs"
[[test]]
name = "property_financial"
path = "tests/property_financial.rs"
[[test]]
name = "property_info"
path = "tests/property_info.rs"
[[test]]
name = "property_logical"
path = "tests/property_logical.rs"
[[test]]
name = "property_lookup"
path = "tests/property_lookup.rs"
[[test]]
name = "property_math"
path = "tests/property_math.rs"
[[test]]
name = "property_operator"
path = "tests/property_operator.rs"
[[test]]
name = "property_parser"
path = "tests/property_parser.rs"
[[test]]
name = "property_statistical"
path = "tests/property_statistical.rs"
[[test]]
name = "property_text"
path = "tests/property_text.rs"
[[test]]
name = "property_volatile"
path = "tests/property_volatile.rs"
[[test]]
name = "property_web"
path = "tests/property_web.rs"
[[test]]
name = "registry"
path = "tests/registry.rs"
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
]
default-features = false
[dependencies.nom]
version = "8"
[dependencies.regex-lite]
version = "0.1"
[dev-dependencies.calamine]
version = "0.26"
[dev-dependencies.csv]
version = "1"
[dev-dependencies.proptest]
version = "1"