formulaa 0.1.0

WYSIWYG TUI math editor rendering Unicode/ASCII-art formulas
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 = "formulaa"
version = "0.1.0"
build = false
exclude = [
    "/.github/",
    "/.markdownlint.yaml",
    "/AGENTS.md",
    "/CLAUDE.md",
    "/demo/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WYSIWYG TUI math editor rendering Unicode/ASCII-art formulas"
readme = "README.md"
keywords = [
    "math",
    "latex",
    "tui",
    "ascii-art",
    "editor",
]
categories = [
    "command-line-utilities",
    "text-editors",
    "mathematics",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/ho-oto/formulaa"

[features]
default = ["tui"]
tui = [
    "dep:ratatui",
    "dep:arboard",
    "dep:clap",
    "dep:crossterm",
]

[lib]
name = "formulaa"
path = "src/lib.rs"

[[bin]]
name = "formulaa"
path = "src/main.rs"
required-features = ["tui"]

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

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

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

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

[dependencies.arboard]
version = "3"
optional = true

[dependencies.clap]
version = "4.6.6"
features = ["derive"]
optional = true

[dependencies.crossterm]
version = "0.29"
features = ["use-dev-tty"]
optional = true

[dependencies.phf]
version = "0.14"
features = ["macros"]

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