1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-30 06:03:39 +03:00
wezterm/term/Cargo.toml
Wez Furlong 013288b1ef mux: grey out the terminal contents when tardy
The predictive echo feels pretty reasonable, but if the connection
is having problems and we're showing the tardiness indicator, the
echo can give the impression that your input is going to get processed.
That may not be (usually is not!) the case.

This commit makes it a bit more visually distinctive that something
isn't right by greying out the color palette in that case.

refs: https://github.com/wez/wezterm/issues/127
2020-03-14 08:57:35 -07:00

26 lines
446 B
TOML

[package]
authors = ["Wez Furlong <wez@wezfurlong.org>"]
name = "term"
version = "0.1.0"
edition = "2018"
[dependencies]
bitflags = "1.0"
anyhow = "1.0"
image = "0.21"
log = "0.4"
num = "0.2"
ordered-float = "1.0"
palette = "0.5"
unicode-segmentation = "1.5"
unicode-width = "0.1"
serde = {version="1.0", features = ["rc"]}
serde_derive = "1.0"
url = "2"
[dev-dependencies]
pretty_assertions = "0.6"
[dependencies.termwiz]
path = "../termwiz"