formualizer-eval 0.5.7

High-performance Arrow-backed Excel formula engine with dependency graph and incremental recalculation
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "formualizer-eval"
version = "0.5.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance Arrow-backed Excel formula engine with dependency graph and incremental recalculation"
homepage = "https://github.com/psu3d0/formualizer"
documentation = "https://docs.rs/formualizer"
readme = "README.md"
keywords = [
    "spreadsheet",
    "excel",
    "evaluation",
    "arrow",
    "dependency-graph",
]
categories = [
    "data-structures",
    "mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/psu3d0/formualizer"
resolver = "2"

[features]
default = ["system-clock"]
js-runtime = [
    "dep:web-time",
    "dep:getrandom",
    "dep:getrandom02",
]
perf_instrumentation = []
system-clock = ["chrono/clock"]
tracing = [
    "dep:tracing",
    "dep:tracing-subscriber",
]
tracing_chrome = [
    "tracing",
    "dep:tracing-chrome",
]

[lib]
name = "formualizer_eval"
path = "src/lib.rs"

[[example]]
name = "recalc_quadratic"
path = "examples/recalc_quadratic.rs"

[[bench]]
name = "interval_tree_bench"
path = "benches/interval_tree_bench.rs"
harness = false

[[bench]]
name = "sheet_ops"
path = "benches/sheet_ops.rs"
harness = false

[dependencies.arrow]
version = "56"

[dependencies.arrow-array]
version = "56"

[dependencies.arrow-buffer]
version = "56"

[dependencies.arrow-cast]
version = "56"

[dependencies.arrow-schema]
version = "56"

[dependencies.arrow-select]
version = "56"

[dependencies.bitflags]
version = "2.9.1"

[dependencies.bumpalo]
version = "3.16"
features = ["collections"]

[dependencies.chrono]
version = "0.4.41"
features = ["std"]
default-features = false

[dependencies.dashmap]
version = "6.1.0"

[dependencies.formualizer-common]
version = "1.1.3"

[dependencies.formualizer-macros]
version = "0.5.7"

[dependencies.formualizer-parse]
version = "1.1.3"

[dependencies.once_cell]
version = "1.21.3"

[dependencies.rand]
version = "0.8.5"
features = ["small_rng"]
default-features = false

[dependencies.rayon]
version = "1.8"

[dependencies.rustc-hash]
version = "1.1"

[dependencies.smallvec]
version = "1.13"

[dependencies.tracing]
version = "0.1"
features = [
    "std",
    "attributes",
]
optional = true
default-features = false

[dependencies.tracing-chrome]
version = "0.7"
optional = true

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "std",
    "fmt",
    "env-filter",
]
optional = true
default-features = false

[dependencies.web-time]
version = "1.1.0"
optional = true

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.glob]
version = "0.3"

[dev-dependencies.serde]
version = "1.0"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1.0.142"

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.3"
features = ["wasm_js"]
optional = true

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom02]
version = "0.2"
features = ["js"]
optional = true
package = "getrandom"

[lints.clippy]
only_used_in_recursion = "allow"
too_many_arguments = "allow"

[lints.rust]
dead_code = "allow"
unused_variables = "allow"

[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0
check-cfg = ["cfg(skip_until_transaction_context_impl)"]