1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-06-10 22:56:10 +02:00
helix/helix-tui/Cargo.toml

27 lines
749 B
INI
Raw Normal View History

[package]
name = "helix-tui"
2022-01-04 10:54:05 +01:00
version = "0.6.0"
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"
include = ["src/**/*", "README.md"]
[features]
default = ["crossterm"]
[dependencies]
bitflags = "1.3"
cassowary = "0.3"
unicode-segmentation = "1.10"
crossterm = { version = "0.26", optional = true }
2022-10-06 20:46:24 +02:00
termini = "0.1"
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" }