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.
20 lines
448 B
TOML
20 lines
448 B
TOML
4 years ago
|
[package]
|
||
|
name = "helix-tui"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
||
|
description = """
|
||
|
A library to build rich terminal user interfaces or dashboards
|
||
|
"""
|
||
|
edition = "2018"
|
||
|
|
||
|
[features]
|
||
|
default = ["crossterm"]
|
||
|
|
||
|
[dependencies]
|
||
|
bitflags = "1.0"
|
||
|
cassowary = "0.3"
|
||
|
unicode-segmentation = "1.2"
|
||
|
unicode-width = "0.1"
|
||
|
crossterm = { version = "0.19", optional = true }
|
||
|
serde = { version = "1", "optional" = true, features = ["derive"]}
|