term-maths 1.0.0

Character-grid mathematical notation renderer for terminals --- LaTeX math to 2D Unicode art
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 = "term-maths"
version = "1.0.0"
build = false
exclude = [
    "python/",
    "pyproject.toml",
    ".github/",
    "docs/",
    ".venv/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Character-grid mathematical notation renderer for terminals --- LaTeX math to 2D Unicode art"
readme = "README.md"
keywords = [
    "math",
    "latex",
    "terminal",
    "unicode",
    "rendering",
]
categories = [
    "command-line-interface",
    "text-processing",
    "visualization",
]
license = "MIT OR Apache-2.0"

[features]
crossterm = ["dep:crossterm"]
pulldown-latex = ["dep:pulldown-latex"]
python = [
    "dep:pyo3",
    "dep:pyo3-stub-gen",
]
ratatui = ["dep:ratatui"]

[lib]
name = "term_maths"
crate-type = [
    "rlib",
    "cdylib",
]
path = "src/lib.rs"

[[bin]]
name = "stub_gen"
path = "src/bin/stub_gen.rs"
required-features = ["python"]

[[example]]
name = "crossterm_demo"
path = "examples/crossterm_demo.rs"

[[example]]
name = "debug_ast"
path = "examples/debug_ast.rs"

[[example]]
name = "dsp_equations"
path = "examples/dsp_equations.rs"

[[example]]
name = "latex_roundtrip"
path = "examples/latex_roundtrip.rs"

[[example]]
name = "matrix_demo"
path = "examples/matrix_demo.rs"

[[example]]
name = "ratatui_demo"
path = "examples/ratatui_demo.rs"

[[example]]
name = "render_demo"
path = "examples/render_demo.rs"

[[test]]
name = "layout_tests"
path = "tests/layout_tests.rs"

[dependencies.crossterm]
version = "0.29.0"
optional = true

[dependencies.pulldown-latex]
version = "0.7.1"
optional = true

[dependencies.pyo3]
version = "0.23"
features = [
    "experimental-inspect",
    "abi3-py310",
]
optional = true

[dependencies.pyo3-stub-gen]
version = "0.7"
optional = true

[dependencies.ratatui]
version = "0.30.0"
optional = true

[dependencies.rust-latex-parser]
version = "0.1.0"

[dependencies.unicode-segmentation]
version = "1.13.2"

[dependencies.unicode-width]
version = "0.2.2"