9b352ceefd
Bumps [crossterm](https://github.com/crossterm-rs/crossterm) from 0.19.0 to 0.20.0. - [Release notes](https://github.com/crossterm-rs/crossterm/releases) - [Changelog](https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md) - [Commits](https://github.com/crossterm-rs/crossterm/compare/0.19...0.20) --- updated-dependencies: - dependency-name: crossterm dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
468 B
TOML
20 lines
468 B
TOML
[package]
|
|
name = "helix-tui"
|
|
version = "0.2.0"
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
description = """
|
|
A library to build rich terminal user interfaces or dashboards
|
|
"""
|
|
edition = "2018"
|
|
license = "MPL-2.0"
|
|
|
|
[features]
|
|
default = ["crossterm"]
|
|
|
|
[dependencies]
|
|
bitflags = "1.0"
|
|
cassowary = "0.3"
|
|
unicode-segmentation = "1.2"
|
|
unicode-width = "0.1"
|
|
crossterm = { version = "0.20", optional = true }
|
|
serde = { version = "1", "optional" = true, features = ["derive"]}
|