Rust 1.72.0 -> 1.73.0

This commit is contained in:
Xithrius 2023-10-05 21:23:36 -07:00
parent 3f61121585
commit 75530e5f0e
No known key found for this signature in database
GPG Key ID: DF6738B80C155B71
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ mod connection;
pub mod oauth;
use ::std::hash::BuildHasher;
use std::{borrow::Borrow, collections::HashMap};
use std::collections::HashMap;
use futures::StreamExt;
use irc::{
@ -42,7 +42,7 @@ pub async fn twitch_irc(
// If the dashboard is the start state, wait until the user has selected
// a channel before connecting to Twitch's IRC.
if config.borrow().terminal.first_state == State::Dashboard {
if config.terminal.first_state == State::Dashboard {
debug!("Waiting for user to select channel from debug screen");
loop {

View File

@ -80,7 +80,7 @@ impl ChatWidget {
pub fn get_messages<'a, B: Backend>(
&self,
frame: &mut Frame<B>,
frame: &Frame<B>,
area: Rect,
messages_data: &'a VecDeque<MessageData>,
emotes: &mut Emotes,