[package]
name = "bubbletea-widgets"
version = "0.1.12"
edition = "2021"
description = "A collection of reusable TUI components for building terminal applications with bubbletea-rs"
license = "MIT"
repository = "https://github.com/whit3rabbit/bubbles-rs"
keywords = ["tui", "terminal", "bubbletea", "components", "ui"]
categories = ["command-line-utilities", "gui"]
authors = ["Whit3rabbit <whiterabbit@protonmail.com>"]
[lib]
name = "bubbletea_widgets"
path = "src/lib.rs"
[package.metadata.docs.rs]
features = []
no-default-features = true
[dependencies]
bubbletea-rs = "0.0.9"
lipgloss-extras = { version = "0.1.1", features = ["full"] }
crossterm = "0.29"
unicode-width = "0.2"
fuzzy-matcher = "0.3.7"
clipboard = { version = "0.5", optional = true }
once_cell = "1.19"
unicode-segmentation = "1.11"
strip-ansi-escapes = "0.2"
libc = "0.2.174"
[features]
default = ["clipboard-support"]
clipboard-support = ["clipboard"]
[dev-dependencies]
tokio = { version = "1.0", features = ["full"] }