[package]
edition = "2021"
rust-version = "1.70"
name = "ratatui-toolkit"
version = "0.2.6"
authors = ["Alpha Innovation Labs"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DEPRECATED: this crate was renamed to `ratkit`. Please migrate to `ratkit`."
homepage = "https://github.com/Alpha-Innovation-Labs/ratkit"
documentation = "https://docs.rs/ratatui-toolkit"
readme = "README.md"
keywords = [
"tui",
"ratatui",
"terminal",
"widgets",
"deprecated",
]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/Alpha-Innovation-Labs/ratkit"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = [
"markdown",
"tree",
"dialog",
"toast",
"split",
"menu",
"statusline",
"hotkey",
"terminal",
"theme",
]
dialog = ["ratkit/dialog"]
file-tree = [
"tree",
"ratkit/file-system-tree",
]
full = [
"default",
"file-tree",
"theme",
]
hotkey = ["ratkit/hotkey-footer"]
markdown = ["ratkit/markdown-preview"]
menu = ["ratkit/menu-bar"]
split = ["ratkit/resizable-grid"]
statusline = ["ratkit/statusline"]
terminal = ["ratkit/termtui"]
theme = ["ratkit/theme-picker"]
toast = ["ratkit/toast"]
tree = ["ratkit/tree-view"]
[lib]
name = "ratatui_toolkit"
path = "src/lib.rs"
[[example]]
name = "aichat_demo"
path = "examples/aichat_demo.rs"
[[example]]
name = "codediff_demo"
path = "examples/codediff_demo.rs"
[[example]]
name = "debug_test"
path = "examples/debug_test.rs"
[[example]]
name = "markdown_demo"
path = "examples/markdown_demo.rs"
[[example]]
name = "showcase"
path = "examples/showcase/main.rs"
[[example]]
name = "split_demo"
path = "examples/split_demo.rs"
[dependencies.ratkit]
version = "0.2.5"
default-features = false