Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
msiemens committed May 29, 2021
1 parent 29c6441 commit 8895b6a
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 59 deletions.
119 changes: 63 additions & 56 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ backtrace = ["onenote_parser/backtrace"]
askama = "0.10"
color-eyre = "0.5"
console = "0.14.0"
happylog = { version = "0.1.0", features = ["structopt"] }
indicatif = "0.15.0"
happylog = { version = "0.2.0", features = ["structopt"] }
indicatif = "0.16.0"
itertools = "0.9.0"
log = "0.4.11"
mime_guess = "2.0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::collections::HashMap;
use std::fmt;
use std::fmt::Display;

pub(crate) fn with_progress<T, F: FnMut() -> T>(msg: &str, mut f: F) -> T {
pub(crate) fn with_progress<T, F: FnMut() -> T>(msg: &'static str, mut f: F) -> T {
let bar = ProgressBar::new_spinner();
bar.set_message(msg);
bar.enable_steady_tick(16);
Expand Down

0 comments on commit 8895b6a

Please sign in to comment.