[package]
edition = "2021"
name = "tex2math"
version = "1.0.4"
authors = ["twn39 <twn39@163.com>"]
build = false
exclude = [
".github/",
"third_party/",
"GEMINI.md",
"*.py",
"*.txt",
".idea/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A blazing fast, zero-copy LaTeX to MathML conversion library and CLI."
readme = "README.md"
keywords = [
"latex",
"mathml",
"math",
"parser",
"winnow",
]
categories = [
"parsing",
"text-processing",
"science",
]
license = "MIT"
repository = "https://github.com/twn39/tex2math"
[features]
cli = ["clap"]
debug-trace = ["winnow/debug"]
default = []
[lib]
name = "tex2math"
path = "src/lib.rs"
[[bin]]
name = "tex2math"
path = "src/main.rs"
required-features = ["cli"]
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
optional = true
[dependencies.winnow]
version = "0.6.26"