reviewed banner; bumped crossterm to 0.19

This commit is contained in:
epi
2020-12-29 09:31:50 -06:00
parent cfa5be074a
commit b581bcd4a8
2 changed files with 7 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ console = "0.14"
openssl = { version = "0.10", features = ["vendored"] }
dirs = "3.0"
regex = "1"
crossterm = "0.18"
crossterm = "0.19"
rlimit = "0.5"
ctrlc = "3.1"
fuzzyhash = "0.2"

View File

@@ -1,6 +1,8 @@
use crate::config::{Configuration, CONFIGURATION};
use crate::statistics::StatCommand;
use crate::utils::{make_request, status_colorizer};
use crate::{
config::{Configuration, CONFIGURATION},
statistics::StatCommand,
utils::{make_request, status_colorizer},
};
use console::{style, Emoji};
use reqwest::{Client, Url};
use serde_json::Value;
@@ -75,7 +77,7 @@ async fn needs_update(
bin_version: &str,
tx_stats: UnboundedSender<StatCommand>,
) -> UpdateStatus {
log::trace!("enter: needs_update({:?}, {})", client, url);
log::trace!("enter: needs_update({:?}, {}, {:?})", client, url, tx_stats);
let unknown = UpdateStatus::Unknown;