[package]
edition = "2024"
name = "texform"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LaTeX formula parser, editor, and normalizer — the public TeXForm facade"
homepage = "https://texform.dev"
readme = "README.md"
keywords = [
"latex",
"math",
"parser",
"formula",
"normalization",
]
categories = [
"parser-implementations",
"text-processing",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/texform-dev/texform"
[lib]
name = "texform"
path = "src/lib.rs"
[[test]]
name = "analysis"
path = "tests/analysis.rs"
[[test]]
name = "argspec"
path = "tests/argspec.rs"
[[test]]
name = "binding_contract"
path = "tests/binding_contract.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "document"
path = "tests/document.rs"
[[test]]
name = "parse_states"
path = "tests/parse_states.rs"
[[test]]
name = "parser"
path = "tests/parser.rs"
[[test]]
name = "probing"
path = "tests/probing.rs"
[[test]]
name = "serialize"
path = "tests/serialize.rs"
[[test]]
name = "transform_engine"
path = "tests/transform_engine.rs"
[[test]]
name = "transform_gating"
path = "tests/transform_gating.rs"
[dependencies.serde]
version = "1.0.216"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.texform-argspec]
version = "0.1.0"
[dependencies.texform-core]
version = "0.1.0"
[dependencies.texform-interface]
version = "0.1.0"
[dependencies.texform-knowledge]
version = "0.1.0"
[dependencies.texform-transform]
version = "0.1.0"