2021-05-09 16:52:55 +08:00
|
|
|
[package]
|
|
|
|
name = "helix-tui"
|
2023-12-05 09:54:18 +08:00
|
|
|
description = """A library to build rich terminal user interfaces or dashboards"""
|
|
|
|
include = ["src/**/*", "README.md"]
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
2023-11-27 20:24:57 +08:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2023-12-05 09:54:18 +08:00
|
|
|
categories.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
2021-05-09 16:52:55 +08:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["crossterm"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-05 09:54:18 +08:00
|
|
|
helix-view = { path = "../helix-view", features = ["term"] }
|
|
|
|
helix-core = { path = "../helix-core" }
|
|
|
|
|
2025-01-14 07:26:31 +08:00
|
|
|
bitflags.workspace = true
|
2021-05-09 16:52:55 +08:00
|
|
|
cassowary = "0.3"
|
2025-01-27 05:52:29 +08:00
|
|
|
unicode-segmentation.workspace = true
|
2024-08-07 03:24:03 +08:00
|
|
|
crossterm = { version = "0.28", optional = true }
|
2023-05-09 08:29:43 +08:00
|
|
|
termini = "1.0"
|
2024-10-01 09:05:07 +08:00
|
|
|
once_cell = "1.20"
|
2023-03-06 02:06:12 +08:00
|
|
|
log = "~0.4"
|