[package]
edition = "2021"
name = "ganit-core"
version = "0.4.0"
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/tryganit/ganit-core"
[lib]
name = "ganit_core"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "helpers"
path = "tests/helpers.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "property_financial"
path = "tests/property_financial.rs"
[[test]]
name = "property_logical"
path = "tests/property_logical.rs"
[[test]]
name = "property_math"
path = "tests/property_math.rs"
[[test]]
name = "property_text"
path = "tests/property_text.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.proptest]
version = "1"