mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
79d3d44c3d
The cxterminfo crate has been used over popular alternatives like `term` since it supports querying for extended capabilities and also for it's small codebase size (which will make it easy to inline it into helix in the future if required).
27 lines
752 B
TOML
27 lines
752 B
TOML
[package]
|
|
name = "helix-tui"
|
|
version = "0.6.0"
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
description = """
|
|
A library to build rich terminal user interfaces or dashboards
|
|
"""
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
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.25", optional = true }
|
|
cxterminfo = "0.2"
|
|
serde = { version = "1", "optional" = true, features = ["derive"]}
|
|
helix-view = { version = "0.6", path = "../helix-view", features = ["term"] }
|
|
helix-core = { version = "0.6", path = "../helix-core" }
|