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