mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
744 B
TOML
29 lines
744 B
TOML
[package]
|
|
name = "helix-tui"
|
|
description = """A library to build rich terminal user interfaces or dashboards"""
|
|
include = ["src/**/*", "README.md"]
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
categories.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
|
|
[features]
|
|
default = ["crossterm"]
|
|
|
|
[dependencies]
|
|
helix-view = { path = "../helix-view", features = ["term"] }
|
|
helix-core = { path = "../helix-core" }
|
|
|
|
bitflags = "2.4"
|
|
cassowary = "0.3"
|
|
unicode-segmentation = "1.11"
|
|
crossterm = { version = "0.27", optional = true }
|
|
termini = "1.0"
|
|
serde = { version = "1", "optional" = true, features = ["derive"]}
|
|
once_cell = "1.19"
|
|
log = "~0.4"
|