asciimath-parser 0.2.0

A fast extensible memory-efficient asciimath parser
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"