helix/helix-tui/Cargo.toml

26 lines
732 B
TOML
Raw Normal View History

[package]
name = "helix-tui"
2021-08-14 07:31:23 +03:00
version = "0.4.1"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
description = """
A library to build rich terminal user interfaces or dashboards
"""
edition = "2018"
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"
include = ["src/**/*", "README.md"]
[features]
default = ["crossterm"]
[dependencies]
bitflags = "1.3"
cassowary = "0.3"
unicode-segmentation = "1.8"
crossterm = { version = "0.22", optional = true }
serde = { version = "1", "optional" = true, features = ["derive"]}
2021-08-12 19:28:11 +03:00
helix-view = { version = "0.4", path = "../helix-view", features = ["term"] }
helix-core = { version = "0.4", path = "../helix-core" }