[package]
edition = "2024"
name = "muffintui"
version = "0.1.14"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal workspace that combines a file tree, editor, shell, and embedded Codex pane"
homepage = "https://github.com/sahildotexe/muffin-tui"
documentation = "https://docs.rs/muffintui"
readme = "README.md"
keywords = [
"tui",
"terminal",
"editor",
"codex",
"developer-tools",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/sahildotexe/muffin-tui"
[lib]
name = "muffintui"
path = "src/lib.rs"
[[bin]]
name = "muffin"
path = "src/main.rs"
[[test]]
name = "app"
path = "tests/app.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "codex"
path = "tests/codex.rs"
[[test]]
name = "file_tree"
path = "tests/file_tree.rs"
[[test]]
name = "syntax"
path = "tests/syntax.rs"
[[test]]
name = "terminal"
path = "tests/terminal.rs"
[[test]]
name = "theme"
path = "tests/theme.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies.crossterm]
version = "0.29"
[dependencies.portable-pty]
version = "0.9"
[dependencies.qrcodegen]
version = "1.8"
[dependencies.rand]
version = "0.9"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tiny_http]
version = "0.12"
[dependencies.vt100]
version = "0.15.2"