2021-05-09 11:52:55 +03:00
|
|
|
[package]
|
|
|
|
name = "helix-tui"
|
2022-01-04 12:54:05 +03:00
|
|
|
version = "0.6.0"
|
2021-05-09 11:52:55 +03:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
|
|
description = """
|
|
|
|
A library to build rich terminal user interfaces or dashboards
|
|
|
|
"""
|
2021-10-22 06:07:41 +03:00
|
|
|
edition = "2021"
|
2021-05-10 19:42:34 +03:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 17:41:03 +03:00
|
|
|
categories = ["editor"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
2021-06-18 16:53:29 +03:00
|
|
|
include = ["src/**/*", "README.md"]
|
2021-05-09 11:52:55 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["crossterm"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-08-15 03:33:22 +03:00
|
|
|
bitflags = "2.4"
|
2021-05-09 11:52:55 +03:00
|
|
|
cassowary = "0.3"
|
2022-09-20 02:28:38 +03:00
|
|
|
unicode-segmentation = "1.10"
|
2023-08-22 02:56:16 +03:00
|
|
|
crossterm = { version = "0.27", optional = true }
|
2023-05-09 03:29:43 +03:00
|
|
|
termini = "1.0"
|
2021-05-09 11:52:55 +03:00
|
|
|
serde = { version = "1", "optional" = true, features = ["derive"]}
|
2023-06-06 05:14:36 +03:00
|
|
|
once_cell = "1.18"
|
2023-03-05 21:06:12 +03:00
|
|
|
log = "~0.4"
|
2022-01-04 12:54:05 +03:00
|
|
|
helix-view = { version = "0.6", path = "../helix-view", features = ["term"] }
|
|
|
|
helix-core = { version = "0.6", path = "../helix-core" }
|