formcalc 0.1.0

A powerful formula evaluation engine with dependency management and parallel execution
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 = "2021"
name = "formcalc"
version = "0.1.0"
authors = ["Victor Greggio <victor_greggio@hotmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A powerful formula evaluation engine with dependency management and parallel execution"
homepage = "https://github.com/victorgreggio/formcalc"
documentation = "https://docs.rs/formcalc"
readme = "README.md"
keywords = [
    "formula",
    "calculator",
    "expression",
    "evaluator",
    "parser",
]
categories = [
    "parser-implementations",
    "mathematics",
    "science",
]
license = "MIT"
repository = "https://github.com/victorgreggio/formcalc"

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

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

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

[dependencies.chrono]
version = "0.4"

[dependencies.rayon]
version = "1.10"

[dependencies.regex]
version = "1.10"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies]