diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-08-13 14:59:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-13 14:59:35 +0300 |
commit | 0a1683e84dfa1d89e65e9b43ed5d586ece47c8dd (patch) | |
tree | 2ce83fa033a32f7ed74fc666d300f8d7ec36e748 /Cargo.lock | |
parent | f2211080867f6053b11194819e6e1a9c48cc21ec (diff) | |
download | alacritty-0a1683e84dfa1d89e65e9b43ed5d586ece47c8dd.tar.gz alacritty-0a1683e84dfa1d89e65e9b43ed5d586ece47c8dd.zip |
Use yellow/red from the config for message bar colors
This commit completes the effort to use config colors for
message bar content by picking red/yellow from user's
colors.normal.{red,yellow} for error/warning messages
instead of fixed colors.
It also removes alacritty_terminal::term::color::RED and
alacritty_terminal::term::color::YELLOW from the alacritty_terminal API,
bumping its version to 0.11.0-dev.
Fixes #4116.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ dependencies = [ name = "alacritty" version = "0.6.0-dev" dependencies = [ - "alacritty_terminal 0.10.1-dev", + "alacritty_terminal 0.11.0-dev", "clap 2.33.2 (registry+https://github.com/rust-lang/crates.io-index)", "copypasta 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "crossfont 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -52,7 +52,7 @@ dependencies = [ [[package]] name = "alacritty_terminal" -version = "0.10.1-dev" +version = "0.11.0-dev" dependencies = [ "base64 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |