2021-05-09 10:52:55 +02:00
|
|
|
[package]
|
|
|
|
name = "helix-tui"
|
2022-01-04 10:54:05 +01:00
|
|
|
version = "0.6.0"
|
2021-05-09 10:52:55 +02:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
|
|
description = """
|
|
|
|
A library to build rich terminal user interfaces or dashboards
|
|
|
|
"""
|
2021-10-22 05:07:41 +02:00
|
|
|
edition = "2021"
|
2021-05-10 18:42:34 +02:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 16:41:03 +02:00
|
|
|
categories = ["editor"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
2021-06-18 15:53:29 +02:00
|
|
|
include = ["src/**/*", "README.md"]
|
2021-05-09 10:52:55 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["crossterm"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-08-17 02:23:59 +02:00
|
|
|
bitflags = "1.3"
|
2021-05-09 10:52:55 +02:00
|
|
|
cassowary = "0.3"
|
2022-02-08 00:50:29 +01:00
|
|
|
unicode-segmentation = "1.9"
|
2022-02-07 02:47:57 +01:00
|
|
|
crossterm = { version = "0.23", optional = true }
|
2021-05-09 10:52:55 +02:00
|
|
|
serde = { version = "1", "optional" = true, features = ["derive"]}
|
2022-01-04 10:54:05 +01:00
|
|
|
helix-view = { version = "0.6", path = "../helix-view", features = ["term"] }
|
|
|
|
helix-core = { version = "0.6", path = "../helix-core" }
|