2021-05-09 10:52:55 +02:00
|
|
|
[package]
|
|
|
|
name = "helix-tui"
|
2021-08-12 18:24:04 +02:00
|
|
|
version = "0.4.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
|
|
|
|
"""
|
|
|
|
edition = "2018"
|
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]
|
|
|
|
bitflags = "1.0"
|
|
|
|
cassowary = "0.3"
|
2021-07-06 01:07:56 +02:00
|
|
|
unicode-segmentation = "1.8"
|
2021-06-14 09:00:01 +02:00
|
|
|
crossterm = { version = "0.20", optional = true }
|
2021-05-09 10:52:55 +02:00
|
|
|
serde = { version = "1", "optional" = true, features = ["derive"]}
|
2021-06-27 06:27:21 +02:00
|
|
|
helix-view = { version = "0.3", path = "../helix-view", features = ["term"] }
|
|
|
|
helix-core = { version = "0.3", path = "../helix-core" }
|