From d872b9f3aed225bcae74ee3707a690c1a096608e Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sat, 13 Feb 2021 18:15:57 +0000 Subject: Update dependencies This introduces some duplicate dependencies, though they are necessary to build properly without any warnings. Fixes #4735. --- alacritty/src/display/content.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'alacritty/src/display/content.rs') diff --git a/alacritty/src/display/content.rs b/alacritty/src/display/content.rs index 81c2977f..1c7e2989 100644 --- a/alacritty/src/display/content.rs +++ b/alacritty/src/display/content.rs @@ -14,7 +14,7 @@ use alacritty_terminal::term::{ RenderableContent as TerminalContent, RenderableCursor as TerminalCursor, Term, TermMode, }; -use crate::config::ui_config::UIConfig; +use crate::config::ui_config::UiConfig; use crate::display::color::{List, DIM_FACTOR}; /// Minimum contrast between a fixed cursor color and the cell's background. @@ -31,7 +31,7 @@ pub struct RenderableContent<'a> { terminal_cursor: TerminalCursor, cursor: Option, search: RenderableSearch, - config: &'a Config, + config: &'a Config, colors: &'a List, } @@ -39,7 +39,7 @@ impl<'a> RenderableContent<'a> { pub fn new( term: &'a Term, dfas: Option<&RegexSearch>, - config: &'a Config, + config: &'a Config, colors: &'a List, show_cursor: bool, ) -> Self { -- cgit