[package]
edition = "2021"
name = "rust-latex-parser"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A LaTeX equation parser that produces an abstract syntax tree. Supports fractions, roots, matrices, big operators, Greek letters, accents, and 130+ Unicode symbols — with convenient bareword syntax."
readme = "README.md"
keywords = [
"latex",
"math",
"equation",
"parser",
"ast",
]
categories = [
"parser-implementations",
"mathematics",
]
license = "MIT"
repository = "https://github.com/William-Selna/Rust-LaTeX-Parser"
[lib]
name = "rust_latex_parser"
path = "src/lib.rs"
[[test]]
name = "robustness"
path = "tests/robustness.rs"
[dependencies]