mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
These functions are the equivalent of 23b424a46
for grapheme clusters.
In order to add the `is_grapheme_boundary` function we also need to
query whether a byte index lies on a character boundary, so this change
also adds `is_char_boundary`.
28 lines
761 B
TOML
28 lines
761 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.workspace = true
|
|
cassowary = "0.3"
|
|
unicode-segmentation.workspace = true
|
|
crossterm = { version = "0.28", optional = true }
|
|
termini = "1.0"
|
|
serde = { version = "1", "optional" = true, features = ["derive"]}
|
|
once_cell = "1.20"
|
|
log = "~0.4"
|