[package]
edition = "2021"
name = "truecalc-core"
version = "3.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Formula engine with exact Google Sheets semantics — stateless, embeddable evaluator"
readme = "README.md"
keywords = [
"spreadsheet",
"formula",
"google-sheets",
"excel",
"evaluator",
]
categories = [
"parser-implementations",
"mathematics",
"science",
]
license = "MIT"
repository = "https://github.com/truecalc/core"
[features]
serde = ["dep:serde"]
[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 = "deprecated_api"
path = "tests/deprecated_api.rs"
[[test]]
name = "engine_flavor"
path = "tests/engine_flavor.rs"
[[test]]
name = "extract_refs_registry"
path = "tests/extract_refs_registry.rs"
[[test]]
name = "float_determinism_tests"
path = "tests/float_determinism_tests.rs"
[[test]]
name = "helpers"
path = "tests/helpers.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "parser_refs"
path = "tests/parser_refs.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 = "refs_eval"
path = "tests/refs_eval.rs"
[[test]]
name = "registry"
path = "tests/registry.rs"
[[test]]
name = "resolver"
path = "tests/resolver.rs"
[[test]]
name = "timezone_aggregates"
path = "tests/timezone_aggregates.rs"
[[test]]
name = "value_completeness"
path = "tests/value_completeness.rs"
[[test]]
name = "workbook_inputs_conformance"
path = "tests/workbook_inputs_conformance.rs"
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
]
default-features = false
[dependencies.chrono-tz]
version = "0.10"
default-features = false
[dependencies.libm]
version = "0.2"
[dependencies.nom]
version = "8"
[dependencies.regex-lite]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dev-dependencies.csv]
version = "1"
[dev-dependencies.libm]
version = "0.2"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"