[package]
edition = "2024"
name = "asciimath-parser"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast extensible memory-efficient asciimath parser"
documentation = "https://docs.rs/asciimath-parser"
readme = "README.md"
keywords = [
"asciimath",
"parser",
"math",
]
categories = [
"parser-implementations",
"mathematics",
]
license = "MIT"
repository = "https://github.com/erikbrinkman/asciimath-parser"
[features]
default = ["qp-trie"]
[lib]
name = "asciimath_parser"
path = "src/lib.rs"
[[test]]
name = "prefix_map"
path = "tests/prefix_map.rs"
[[bench]]
name = "comparison"
path = "benches/comparison.rs"
[[bench]]
name = "examples"
path = "benches/examples.rs"
[[bench]]
name = "prefix_map"
path = "benches/prefix_map.rs"
[dependencies.fnv]
version = "1.0"
optional = true
[dependencies.fst]
version = "0.4"
optional = true
[dependencies.qp-trie]
version = "0.8"
optional = true
[dev-dependencies.rand]
version = "0.10"