mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 10:57:48 +03:00
The dependabot file was matching on tree-sitter crates - that's a relic from v0.6.0 and lower where grammars were regular dependencies. The remaining changes are unused crates that were forgotten about during shuffles like moving path canonicalization from helix-core to helix-loader (and then again from helix-loader to helix-stdx).
27 lines
694 B
TOML
27 lines
694 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"
|
|
once_cell = "1.20"
|
|
log = "~0.4"
|