Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-tui/Cargo.toml')
| -rw-r--r-- | helix-tui/Cargo.toml | 40 |
1 files changed, 18 insertions, 22 deletions
diff --git a/helix-tui/Cargo.toml b/helix-tui/Cargo.toml index bcf890f5..a4a1c389 100644 --- a/helix-tui/Cargo.toml +++ b/helix-tui/Cargo.toml @@ -1,30 +1,26 @@ [package] name = "helix-tui" -description = """A library to build rich terminal user interfaces or dashboards""" +version = "0.6.0" +authors = ["Blaž Hrastnik <[email protected]>"] +description = """ +A library to build rich terminal user interfaces or dashboards +""" +edition = "2021" +license = "MPL-2.0" +categories = ["editor"] +repository = "https://github.com/helix-editor/helix" +homepage = "https://helix-editor.com" 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 = ["termina", "crossterm"] +default = ["crossterm"] [dependencies] -helix-view = { path = "../helix-view", features = ["term"] } -helix-core = { path = "../helix-core" } - -bitflags.workspace = true +bitflags = "1.3" cassowary = "0.3" -unicode-segmentation.workspace = true -termina = { workspace = true, optional = true } -termini = "1.0" -once_cell = "1.21" -log = "~0.4" - -[target.'cfg(windows)'.dependencies] -crossterm = { version = "0.28", optional = true } +unicode-segmentation = "1.10" +crossterm = { version = "0.25", optional = true } +termini = "0.1" +serde = { version = "1", "optional" = true, features = ["derive"]} +helix-view = { version = "0.6", path = "../helix-view", features = ["term"] } +helix-core = { version = "0.6", path = "../helix-core" } |