1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
[package] name = "helix-tui" version = "0.4.1" authors = ["Blaž Hrastnik <[email protected]>"] description = """ A library to build rich terminal user interfaces or dashboards """ edition = "2018" license = "MPL-2.0" categories = ["editor"] repository = "https://github.com/helix-editor/helix" homepage = "https://helix-editor.com" include = ["src/**/*", "README.md"] [features] default = ["crossterm"] [dependencies] bitflags = "1.3" cassowary = "0.3" unicode-segmentation = "1.8" crossterm = { version = "0.20", optional = true } serde = { version = "1", "optional" = true, features = ["derive"]} helix-view = { version = "0.4", path = "../helix-view", features = ["term"] } helix-core = { version = "0.4", path = "../helix-core" }