2021-05-09 10:52:55 +02:00
|
|
|
[package]
|
|
|
|
name = "helix-tui"
|
2021-06-13 15:35:13 +02:00
|
|
|
version = "0.2.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 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"
|
|
|
|
unicode-segmentation = "1.2"
|
|
|
|
unicode-width = "0.1"
|
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"]}
|