mirror of
https://github.com/ratatui/ratatui.git
synced 2025-09-27 04:50:46 +00:00

Versions: ``` ratatui = { path = "ratatui", version = "0.30.0-alpha.1" } ratatui-core = { path = "ratatui-core", version = "0.1.0-alpha.2" } ratatui-crossterm = { path = "ratatui-crossterm", version = "0.1.0-alpha.1" } ratatui-termion = { path = "ratatui-termion", version = "0.1.0-alpha.1" } ratatui-termwiz = { path = "ratatui-termwiz", version = "0.1.0-alpha.1" } ratatui-widgets = { path = "ratatui-widgets", version = "0.3.0-alpha.1" } ```
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "ratatui-termwiz"
|
|
version = "0.1.0-alpha.1"
|
|
description = "Termwiz backend for the Ratatui Terminal UI library."
|
|
documentation = "https://docs.rs/ratatui-termwiz/"
|
|
readme = "README.md"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
license.workspace = true
|
|
exclude.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[features]
|
|
default = []
|
|
|
|
## Enables the backend code that sets the underline color.
|
|
## Underline color is not supported on Windows 7.
|
|
underline-color = []
|
|
|
|
## Use terminal scrolling regions to make Terminal::insert_before less prone to flickering.
|
|
scrolling-regions = ["ratatui-core/scrolling-regions"]
|
|
|
|
[dependencies]
|
|
document-features = { workspace = true, optional = true }
|
|
ratatui-core = { workspace = true }
|
|
termwiz.workspace = true
|
|
|
|
[dev-dependencies]
|
|
ratatui = { path = "../ratatui", features = ["termwiz"] }
|
|
rstest.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|