2021-05-09 12:52:55 +04:00
|
|
|
[package]
|
|
|
|
name = "helix-tui"
|
2023-12-05 05:54:18 +04: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 16:24:57 +04:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2023-12-05 05:54:18 +04:00
|
|
|
categories.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
2021-05-09 12:52:55 +04:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["crossterm"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-05 05:54:18 +04:00
|
|
|
helix-view = { path = "../helix-view", features = ["term"] }
|
|
|
|
helix-core = { path = "../helix-core" }
|
|
|
|
|
2023-08-15 04:33:22 +04:00
|
|
|
bitflags = "2.4"
|
2021-05-09 12:52:55 +04:00
|
|
|
cassowary = "0.3"
|
2022-09-20 03:28:38 +04:00
|
|
|
unicode-segmentation = "1.10"
|
2023-08-22 03:56:16 +04:00
|
|
|
crossterm = { version = "0.27", optional = true }
|
2023-05-09 04:29:43 +04:00
|
|
|
termini = "1.0"
|
2021-05-09 12:52:55 +04:00
|
|
|
serde = { version = "1", "optional" = true, features = ["derive"]}
|
2023-12-12 17:46:11 +04:00
|
|
|
once_cell = "1.19"
|
2023-03-05 22:06:12 +04:00
|
|
|
log = "~0.4"
|