mathlex 0.1.1

Mathematical expression parser for LaTeX and plain text notation, producing a language-agnostic AST
Documentation
[[bench]]
harness = false
name = "benchmarks"
path = "benches/benchmarks.rs"

[build-dependencies.swift-bridge-build]
version = "0.1"

[dependencies.chumsky]
version = "1.0.0-alpha.8"

[dependencies.ordered-float]
features = ["serde"]
version = "4"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[dependencies.serde_json]
optional = true
version = "1.0"

[dependencies.swift-bridge]
optional = true
version = "0.1"

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

[dev-dependencies.proptest]
version = "1.5"

[features]
default = []
ffi = ["swift-bridge"]
serde = ["dep:serde", "dep:serde_json"]

[lib]
crate-type = ["staticlib", "cdylib", "lib"]
name = "mathlex"
path = "src/lib.rs"

[package]
authors = ["Christian C. Berclaz"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["parsing", "mathematics", "science"]
description = "Mathematical expression parser for LaTeX and plain text notation, producing a language-agnostic AST"
documentation = "https://docs.rs/mathlex"
edition = "2021"
homepage = "https://github.com/ChrisGVE/mathlex"
keywords = ["math", "parser", "latex", "ast", "expression"]
license = "MIT"
name = "mathlex"
readme = "README.md"
repository = "https://github.com/ChrisGVE/mathlex"
version = "0.1.1"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3

[[test]]
name = "property_tests"
path = "tests/property_tests.rs"

[[test]]
name = "roundtrip_tests"
path = "tests/roundtrip_tests.rs"