[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